]> git.openstreetmap.org Git - rails.git/blob - app/models/relation_tag.rb
Merge remote-tracking branch 'openstreetmap/pull/1436'
[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 :relation, :presence => true, :associated => true
8   validates :k, :v, :allow_blank => true, :length => { :maximum => 255 }
9   validates :k, :uniqueness => { :scope => :relation_id }
10 end