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.
|
|
|
|
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
|
|
|
|
|
end
|