openstreetmap-website/db/migrate/006_create_segments.rb
2006-08-24 18:55:12 +00:00

11 lines
193 B
Ruby

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