X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/945df0f150ea803e1a654b03155ecdb444c6ed1c..33799121b8a1ea5fdb1508ceda3fa99736db923f:/app/models/old_relation_member.rb?ds=inline diff --git a/app/models/old_relation_member.rb b/app/models/old_relation_member.rb index b556bd13f..2e723c5bd 100644 --- a/app/models/old_relation_member.rb +++ b/app/models/old_relation_member.rb @@ -2,11 +2,11 @@ # # Table name: 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 -# version :bigint(8) default(0), not null, primary key +# version :bigint default(0), not null, primary key # sequence_id :integer default(0), not null, primary key # # Indexes @@ -15,12 +15,11 @@ # # Foreign Keys # -# relation_members_id_fkey (relation_id => relations.relation_id) +# relation_members_id_fkey ([relation_id, version] => relations[relation_id, version]) # class OldRelationMember < ApplicationRecord self.table_name = "relation_members" - self.primary_keys = "relation_id", "version", "sequence_id" 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