X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ddd5b4cf19a92582fd114914be5bd5a04d3522a7..08b44b0f8fc68070f5dd3e891ff800608f79a4df:/app/models/way_node.rb diff --git a/app/models/way_node.rb b/app/models/way_node.rb index 7f7789303..c57d3be79 100644 --- a/app/models/way_node.rb +++ b/app/models/way_node.rb @@ -1,6 +1,24 @@ -class WayNode < ActiveRecord::Base - set_table_name 'current_way_nodes' +# == Schema Information +# +# Table name: current_way_nodes +# +# way_id :bigint(8) not null, primary key +# node_id :bigint(8) not null +# sequence_id :bigint(8) not null, primary key +# +# Indexes +# +# current_way_nodes_node_idx (node_id) +# +# Foreign Keys +# +# current_way_nodes_id_fkey (way_id => current_ways.id) +# current_way_nodes_node_id_fkey (node_id => current_nodes.id) +# - set_primary_keys :id, :sequence_id +class WayNode < ApplicationRecord + self.table_name = "current_way_nodes" + + belongs_to :way belongs_to :node end