X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a39c645602f9d27b7927500c93890f4d7d79620e..ae5b7812ccfda66c59cb3ff57ce3b2c3e718f14b:/app/models/tracetag.rb
diff --git a/app/models/tracetag.rb b/app/models/tracetag.rb
index 84b6c6dfa..b1dde095c 100644
--- a/app/models/tracetag.rb
+++ b/app/models/tracetag.rb
@@ -2,9 +2,9 @@
#
# Table name: gpx_file_tags
#
-# gpx_id :integer default(0), not null
+# gpx_id :bigint(8) not null
# tag :string not null
-# id :integer not null, primary key
+# id :bigint(8) not null, primary key
#
# Indexes
#
@@ -16,10 +16,10 @@
# gpx_file_tags_gpx_id_fkey (gpx_id => gpx_files.id)
#
-class Tracetag < ActiveRecord::Base
+class Tracetag < ApplicationRecord
self.table_name = "gpx_file_tags"
- belongs_to :trace, :foreign_key => "gpx_id"
+ belongs_to :trace, :foreign_key => "gpx_id", :inverse_of => :tags
validates :trace, :associated => true
validates :tag, :length => 1..255, :characters => { :url_safe => true }