Skip to content

Instantly share code, notes, and snippets.

@beaucollins
Created August 26, 2010 18:51
Show Gist options
  • Save beaucollins/551962 to your computer and use it in GitHub Desktop.
Save beaucollins/551962 to your computer and use it in GitHub Desktop.
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