parent
674f531a18
commit
a3a228862c
3 changed files with 24 additions and 0 deletions
|
@ -25,4 +25,6 @@ class OldRelationMember < ApplicationRecord
|
|||
belongs_to :old_relation, :foreign_key => [:relation_id, :version], :inverse_of => :old_members
|
||||
# A bit messy, referring to the current tables, should do for the data browser for now
|
||||
belongs_to :member, :polymorphic => true
|
||||
|
||||
validates :member_role, :allow_blank => true, :length => { :maximum => 255 }, :characters => true
|
||||
end
|
||||
|
|
|
@ -23,4 +23,6 @@ class RelationMember < ApplicationRecord
|
|||
|
||||
belongs_to :relation
|
||||
belongs_to :member, :polymorphic => true
|
||||
|
||||
validates :member_role, :allow_blank => true, :length => { :maximum => 255 }, :characters => true
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue