X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/322d782c9c961b1b1fc6dd89d38391c3e26ec2b4..dce0f1639e9ac0c4d79182725b2996ad85c4d279:/app/models/old_way_node.rb?ds=sidebyside diff --git a/app/models/old_way_node.rb b/app/models/old_way_node.rb index 7420b5cfc..9c8c0c6f3 100644 --- a/app/models/old_way_node.rb +++ b/app/models/old_way_node.rb @@ -1,7 +1,27 @@ -class OldWayNode < ActiveRecord::Base - set_table_name 'way_nodes' +# == Schema Information +# +# Table name: way_nodes +# +# way_id :bigint(8) not null, primary key +# node_id :bigint(8) not null +# version :bigint(8) not null, primary key +# sequence_id :bigint(8) not null, primary key +# +# Indexes +# +# way_nodes_node_idx (node_id) +# +# Foreign Keys +# +# way_nodes_id_fkey (way_id => ways.way_id) +# - set_primary_keys :id, :version, :sequence_id +class OldWayNode < ApplicationRecord + self.table_name = "way_nodes" + self.primary_keys = "way_id", "version", "sequence_id" - belongs_to :way, :foreign_key=> :id + belongs_to :old_way, :foreign_key => [:way_id, :version], :inverse_of => :old_nodes + # A bit messy, referring to current nodes and ways, should do for the data browser for now + belongs_to :node + belongs_to :way end