X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2d22ab10f759828e27876f138b419ff4c0913b87..dbe165bbb3d6eda37d9579f1ac767599f9055607:/app/models/tracetag.rb diff --git a/app/models/tracetag.rb b/app/models/tracetag.rb index 2614e5971..355137831 100644 --- a/app/models/tracetag.rb +++ b/app/models/tracetag.rb @@ -1,8 +1,8 @@ class Tracetag < ActiveRecord::Base self.table_name = "gpx_file_tags" - validates_format_of :tag, :with => /\A[^\/;.,?]*\z/ - validates_length_of :tag, :within => 1..255 - belongs_to :trace, :foreign_key => "gpx_id" + + validates :trace, :presence => true, :associated => true + validates :tag, :length => 1..255, :format => /\A[^\/;.,?]*\z/ end