Created
September 23, 2009 08:01
-
-
Save cchandler/191818 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 User < ActiveRecord::Base | |
has_many :memberships, :dependent => :destroy | |
has_many :groups, :through => :memberships | |
end | |
class Membership < ActiveRecord::Base | |
belongs_to :user | |
belongs_to :group | |
end | |
class Group < ActiveRecord::Base | |
has_many :memberships, :dependent => :destroy | |
has_many :users, :through => :memberships | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment