openstreetmap-website/db/migrate/012_create_maps.rb
2006-11-17 18:47:37 +00:00

11 lines
181 B
Ruby

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