]> git.openstreetmap.org Git - rails.git/blob - app/models/way_tag.rb
Add support for segment/:id/ways and node/:id/segments API calls. Fixes #452.
[rails.git] / app / models / way_tag.rb
1 class WayTag < ActiveRecord::Base
2   set_table_name 'current_way_tags'
3
4   belongs_to :way, :foreign_key => 'id'
5
6 end