openstreetmap-website/app/models/old_way_node.rb
Andy Allan a41d500b9f Create an ApplicationRecord for models to inherit from
This is the default for Rails 5+, and also paves the way for
multiple database support.
2019-11-27 11:50:48 +01:00

27 lines
694 B
Ruby

# == 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 => ways.way_id)
#
class OldWayNode < ApplicationRecord
self.table_name = "way_nodes"
self.primary_keys = "way_id", "version", "sequence_id"
belongs_to :old_way, :foreign_key => [:way_id, :version]
# A bit messy, referring to current nodes and ways, should do for the data browser for now
belongs_to :node
belongs_to :way
end