Created
September 27, 2010 10:37
-
-
Save Ferdev/598842 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Animal < ActiveRecord::Base | |
has_many :diseases | |
has_many :pets | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Disease < ActiveRecord::Base | |
belongs_to :animal | |
has_and_belongs_to_many :pets | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Pet < ActiveRecord::Base | |
belongs_to :animal | |
has_and_belongs_to_many :diseases | |
accepts_nested_attributes_for :diseases, :allow_destroy => true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment