X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a5e5cbc73999d004998e1e90b1b19796a94b077d..9a9b045372a6f48420a9a6dacfde52c34ab7abce:/app/models/tracetag.rb diff --git a/app/models/tracetag.rb b/app/models/tracetag.rb index f9833e141..9d2195920 100644 --- a/app/models/tracetag.rb +++ b/app/models/tracetag.rb @@ -1,8 +1,8 @@ class Tracetag < ActiveRecord::Base - set_table_name 'gpx_file_tags' + self.table_name = "gpx_file_tags" - validates_format_of :tag, :with => /^[^\/;.,?]*$/ - validates_length_of :tag, :within => 1..255 + belongs_to :trace, :foreign_key => "gpx_id" - belongs_to :trace, :foreign_key => 'gpx_id' + validates :trace, :associated => true + validates :tag, :length => 1..255, :format => %r{\A[^/;.,?]*\z} end