]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/trace.rb
Added missing ordering to relation members. This was only visible in some relations...
[rails.git] / app / models / trace.rb
index 1b44e218717cdea042dc30ce7f0359d719609e37..03dbeb0b35d53206753972cc3da8f3422f15d3cc 100644 (file)
@@ -3,8 +3,8 @@ class Trace < ActiveRecord::Base
 
   validates_presence_of :user_id, :name, :timestamp
   validates_presence_of :description, :on => :create
-  validates_length_of :name, :within => 1..255
-  validates_length_of :description, :within => 1..255
+  validates_length_of :name, :maximum => 255
+  validates_length_of :description, :maximum => 255
 #  validates_numericality_of :latitude, :longitude
   validates_inclusion_of :public, :inserted, :in => [ true, false]