]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/old_relation_tag.rb
Merge branch 'master' into notes
[rails.git] / app / models / old_relation_tag.rb
index 7ce6f694e633bb2a2110711229b1be8b6886e275..49324966f506c2624f0055d9f02fc5f82f2e6911 100644 (file)
@@ -1,3 +1,11 @@
 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_presence_of :old_relation
+  validates_length_of :k, :maximum => 255, :allow_blank => true
+  validates_uniqueness_of :k, :scope => [:relation_id, :version]
+  validates_length_of :v, :maximum => 255, :allow_blank => true
 end