]> 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 10e867badc71381fc42ba6c93b4a7071f53ea827..03dbeb0b35d53206753972cc3da8f3422f15d3cc 100644 (file)
@@ -3,6 +3,8 @@ class Trace < ActiveRecord::Base
 
   validates_presence_of :user_id, :name, :timestamp
   validates_presence_of :description, :on => :create
+  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]