]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/old_way.rb
Add explicit primary key declaration for changeset subscriptions
[rails.git] / app / models / old_way.rb
index ed1f867f6c2e163c3e836789be29c3bfc772c31c..63c4d8b65d2d6c4acb24b3a3d111f0a105c9eb72 100644 (file)
@@ -16,7 +16,9 @@ class OldWay < ActiveRecord::Base
   has_many :old_nodes, :class_name => "OldWayNode", :foreign_key => [:way_id, :version]
   has_many :old_tags, :class_name => "OldWayTag", :foreign_key => [:way_id, :version]
 
-  validates_associated :changeset
+  validates :changeset, :presence => true, :associated => true
+  validates :timestamp, :presence => true
+  validates :visible, :inclusion => [true, false]
 
   def self.from_way(way)
     old_way = OldWay.new
@@ -114,11 +116,6 @@ class OldWay < ActiveRecord::Base
     points
   end
 
-  # Temporary method to match interface to nodes
-  def tags_as_hash
-    tags
-  end
-
   # Temporary method to match interface to ways
   def way_nodes
     old_nodes