27 lines
750 B
Ruby
27 lines
750 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: current_relation_members
|
|
#
|
|
# relation_id :bigint(8) not null, primary key
|
|
# member_type :enum not null
|
|
# member_id :bigint(8) not null
|
|
# member_role :string not null
|
|
# sequence_id :integer default(0), not null, primary key
|
|
#
|
|
# Indexes
|
|
#
|
|
# current_relation_members_member_idx (member_type,member_id)
|
|
#
|
|
# Foreign Keys
|
|
#
|
|
# current_relation_members_id_fkey (relation_id => current_relations.id)
|
|
#
|
|
|
|
class RelationMember < ApplicationRecord
|
|
self.table_name = "current_relation_members"
|
|
|
|
belongs_to :relation
|
|
belongs_to :member, :polymorphic => true
|
|
|
|
validates :member_role, :allow_blank => true, :length => { :maximum => 255 }, :characters => true
|
|
end
|