openstreetmap-website/db/migrate/014_create_old_way_segments.rb
2006-11-27 10:38:32 +00:00

11 lines
215 B
Ruby

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