mirror of
https://github.com/openstreetmap/openstreetmap-website.git
synced 2025-08-16 17:07:06 +00:00
25 lines
533 B
Ruby
25 lines
533 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: current_way_nodes
|
|
#
|
|
# way_id :bigint not null, primary key
|
|
# node_id :bigint not null
|
|
# sequence_id :bigint 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"
|
|
|
|
belongs_to :way
|
|
belongs_to :node
|
|
end
|