openstreetmap-website/db/migrate/003_create_trace_points.rb
2006-07-28 21:41:39 +00:00

11 lines
204 B
Ruby

class CreateTracePoints < ActiveRecord::Migration
def self.up
create_table :trace_points do |t|
# t.column :name, :string
end
end
def self.down
drop_table :trace_points
end
end