socialforge/app/models/shixun_member.rb

7 lines
209 B
Ruby

class ShixunMember < ActiveRecord::Base
attr_accessible :shixun_id, :user_id, :role
belongs_to :shixun
belongs_to :user
has_many :roles ,:through => :shixun_member_roles, :foreign_key => 'role_id'
end