我的模型有以下:has_many, :through
关联:
团体模型:
has_many :group_users
has_many :users, :through => :group_users
用户型号:
has_many :group_users
has_many :groups, :before_add => :validates_group, :through => :group_users
组用户模型:
belongs_to :group
belongs_to :user
在groups_users
表中,我有一个与用户状态(活动或非活动)保持同步的附加列。当用户从组中删除他们自己时,我需要能够更新该列。如何update_attributes
在连接表上使用?