gregmolnar/invoicer

View on GitHub
app/models/address.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Address < ActiveRecord::Base
  belongs_to :client
  belongs_to :user
  has_many :invoices, :dependent => :restrict_with_error
end