]> git.openstreetmap.org Git - rails.git/blob - app/models/relation_tag.rb
Use L.OSM tile classes
[rails.git] / app / models / relation_tag.rb
1 class RelationTag < ActiveRecord::Base
2   self.table_name = "current_relation_tags"
3   self.primary_keys = "relation_id", "k"
4
5   belongs_to :relation
6
7   validates_presence_of :relation
8   validates_length_of :k, :maximum => 255, :allow_blank => true
9   validates_uniqueness_of :k, :scope => :relation_id
10   validates_length_of :v, :maximum => 255, :allow_blank => true
11 end