]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/old_relation_tag.rb
Localisation updates from https://translatewiki.net.
[rails.git] / app / models / old_relation_tag.rb
index 7ce6f694e633bb2a2110711229b1be8b6886e275..ad3b72734aed707bfebc87c4c26562690fa5f9c6 100644 (file)
@@ -1,3 +1,10 @@
 class OldRelationTag < ActiveRecord::Base
-  set_table_name 'relation_tags'
+  self.table_name = "relation_tags"
+  self.primary_keys = "relation_id", "version", "k"
+
+  belongs_to :old_relation, :foreign_key => [:relation_id, :version]
+
+  validates :old_relation, :presence => true, :associated => true
+  validates :k, :v, :allow_blank => true, :length => { :maximum => 255 }
+  validates :k, :uniqueness => { :scope => [:relation_id, :version] }
 end