You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pgfqe6ch8/app/models/team_member.rb

8 lines
235 B

6 years ago
class TeamMember < ActiveRecord::Base
belongs_to :competition_team
belongs_to :competition
belongs_to :user
# role 1创建者 2成员 3指导老师
attr_accessible :role, :user_id, :competition_id, :is_teacher
6 years ago
end