openstreetmap-website/db/migrate/015_create_tracepoints.rb
2006-12-01 15:59:13 +00:00

11 lines
202 B
Ruby

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