X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/9d57643812a8ee94022541c1119a69374565a6dd..9ed6a9d779829757714f70313d29367db3821d85:/app/models/old_way_node.rb diff --git a/app/models/old_way_node.rb b/app/models/old_way_node.rb index 5260ee698..e031aba10 100644 --- a/app/models/old_way_node.rb +++ b/app/models/old_way_node.rb @@ -1,6 +1,26 @@ -class OldWayNode < ActiveRecord::Base - belongs_to :user +# == 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", "version"] => ways.["way_id", "version"]) +# - set_table_name 'way_nodes' +class OldWayNode < ApplicationRecord + self.table_name = "way_nodes" + belongs_to :old_way, :query_constraints => [: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