openstreetmap-website/db/migrate/011_create_way_segments.rb
2006-08-26 21:36:21 +00:00

11 lines
204 B
Ruby

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