]> git.openstreetmap.org Git - rails.git/blob - app/models/way_tag.rb
There is no routing.js to compile
[rails.git] / app / models / way_tag.rb
1 class WayTag < ActiveRecord::Base
2   self.table_name = "current_way_tags"
3   self.primary_keys = "way_id", "k"
4
5   belongs_to :way
6   
7   validates_presence_of :way
8   validates_length_of :k, :maximum => 255, :allow_blank => true
9   validates_uniqueness_of :k, :scope => :way_id
10   validates_length_of :v, :maximum => 255, :allow_blank => true
11 end