X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e660e609661edadc1ed5ad49d6e83e936b2f91cd..6c159b96734f81efc24f2c1410cd979b5c272819:/app/models/way_node.rb diff --git a/app/models/way_node.rb b/app/models/way_node.rb index 30d901356..0626fb240 100644 --- a/app/models/way_node.rb +++ b/app/models/way_node.rb @@ -1,4 +1,22 @@ -class WayNode < ActiveRecord::Base +# == 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) +# + +class WayNode < ApplicationRecord self.table_name = "current_way_nodes" self.primary_keys = "way_id", "sequence_id"