X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/9861ca8001769b7cced2c8b5bcc0a87896f5439e..e0706f06b19b04295cf8c87acceb536d96eaf427:/app/models/tracetag.rb diff --git a/app/models/tracetag.rb b/app/models/tracetag.rb index f1d5967d5..2614e5971 100644 --- a/app/models/tracetag.rb +++ b/app/models/tracetag.rb @@ -1,7 +1,8 @@ class Tracetag < ActiveRecord::Base - set_table_name 'gpx_file_tags' + self.table_name = "gpx_file_tags" - validates_format_of :tag, :with => /^[^\/;.,?]*$/ + validates_format_of :tag, :with => /\A[^\/;.,?]*\z/ + validates_length_of :tag, :within => 1..255 - belongs_to :trace, :foreign_key => 'gpx_id' + belongs_to :trace, :foreign_key => "gpx_id" end