X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a7e3b58b410c2f74a69eebbe3151866a5161dc09..990f3eba4069f98a11d98f18b18d0e35bcf295f4:/app/models/tracetag.rb diff --git a/app/models/tracetag.rb b/app/models/tracetag.rb index d74a1e75a..1b8ba2309 100644 --- a/app/models/tracetag.rb +++ b/app/models/tracetag.rb @@ -1,6 +1,10 @@ class Tracetag < ActiveRecord::Base - set_table_name 'gpx_file_tags' + self.table_name = "gpx_file_tags" - belongs_to :trace, :foreign_key => 'gpx_id' + validates_format_of :tag, :with => /^[^\/;.,?]*$/ + validates_length_of :tag, :within => 1..255 + + attr_accessible :tag + belongs_to :trace, :foreign_key => 'gpx_id' end