class Trace < ActiveRecord::Base
set_table_name 'gpx_files'
- has_many :old_nodes, :foreign_key => :id
belongs_to :user
+ has_many :tags, :class_name => 'Tracetag', :foreign_key => 'gpx_id', :dependent => :destroy
- def tags=(bleh)
-
+ def tagstring=(s)
+ self.tags = s.split().collect {|tag|
+ tt = Tracetag.new
+ tt.tag = tag
+ tt
+ }
end
end