X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2d6c36d97bc8c39673be8efbab11ca64de1e89a2..38640e0253e8984974d275f2c232eb057ba86c84:/app/models/way_node.rb?ds=sidebyside diff --git a/app/models/way_node.rb b/app/models/way_node.rb index 06515fc20..5c09cd740 100644 --- a/app/models/way_node.rb +++ b/app/models/way_node.rb @@ -1,5 +1,25 @@ +# == Schema Information +# +# Table name: current_way_nodes +# +# way_id :integer not null, primary key +# node_id :integer not null +# sequence_id :integer 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) +# + class WayNode < ActiveRecord::Base - set_table_name 'current_way_nodes' + self.table_name = "current_way_nodes" + self.primary_keys = "way_id", "sequence_id" + belongs_to :way belongs_to :node end