Created
August 26, 2010 18:51
-
-
Save beaucollins/551962 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Property < ActiveRecord::Base | |
has_many :features | |
has_many :ammenities, :through => :features | |
end | |
class Feature < ActiveRecord::Base | |
belongs_to :ammenity | |
belongs_to :property | |
end | |
class Ammenity < ActiveRecord::Base | |
has_many :features | |
has_many :properties, :through => :features | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment