Created
April 9, 2015 16:44
-
-
Save monkbroc/8eb576068f886688ef4a to your computer and use it in GitHub Desktop.
Updated models
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 Team < ActiveRecord::Base | |
| has_many :team_users | |
| has_many :users, :through => :team_users | |
| end |
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 TeamUser < ActiveRecord::Base | |
| # Validations | |
| validates_presence_of :team, :user | |
| # Relations | |
| belongs_to :user | |
| belongs_to :team | |
| end |
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 User < ActiveRecord::Base | |
| has_many :team_users | |
| has_many :teams, :through => :team_users | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment