add tags to gpx files

This commit is contained in:
Steve Coast 2006-12-06 17:10:59 +00:00
parent 93dab8a127
commit a7e3b58b41
8 changed files with 41 additions and 7 deletions

6
app/models/tracetag.rb Normal file
View file

@ -0,0 +1,6 @@
class Tracetag < ActiveRecord::Base
set_table_name 'gpx_file_tags'
belongs_to :trace, :foreign_key => 'gpx_id'
end