class Client < ActiveRecord::Base | |
has_many :diagnoses | |
end | |
class Diagnosis < ActiveRecord::Base | |
belongs_to :client | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
class Client < ActiveRecord::Base | |
has_many :diagnoses | |
end | |
class Diagnosis < ActiveRecord::Base | |
belongs_to :client | |
end |