Update to rails 7.2.0
This commit is contained in:
parent
6789fc3081
commit
be2678e0dd
18 changed files with 233 additions and 142 deletions
|
@ -31,8 +31,8 @@ class OldRelation < ApplicationRecord
|
|||
belongs_to :redaction, :optional => true
|
||||
belongs_to :current_relation, :class_name => "Relation", :foreign_key => "relation_id", :inverse_of => :old_relations
|
||||
|
||||
has_many :old_members, -> { order(:sequence_id) }, :class_name => "OldRelationMember", :query_constraints => [:relation_id, :version], :inverse_of => :old_relation
|
||||
has_many :old_tags, :class_name => "OldRelationTag", :query_constraints => [:relation_id, :version], :inverse_of => :old_relation
|
||||
has_many :old_members, -> { order(:sequence_id) }, :class_name => "OldRelationMember", :foreign_key => [:relation_id, :version], :inverse_of => :old_relation
|
||||
has_many :old_tags, :class_name => "OldRelationTag", :foreign_key => [:relation_id, :version], :inverse_of => :old_relation
|
||||
|
||||
validates :changeset, :associated => true
|
||||
validates :timestamp, :presence => true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue