#
# Table name: current_relation_members
#
-# relation_id :bigint(8) not null, primary key
+# relation_id :bigint not null, primary key
# member_type :enum not null
-# member_id :bigint(8) not null
+# member_id :bigint not null
# member_role :string not null
# sequence_id :integer default(0), not null, primary key
#
class RelationMember < ApplicationRecord
self.table_name = "current_relation_members"
- self.primary_keys = "relation_id", "sequence_id"
belongs_to :relation
belongs_to :member, :polymorphic => true
+
+ validates :member_role, :allow_blank => true, :length => { :maximum => 255 }, :characters => true
end