cartodb-4.42/db/migrate/20120719104544_maps.rb
2024-04-06 05:25:13 +00:00

20 lines
423 B
Ruby

class MapsMigration < Sequel::Migration
def up
create_table :maps do
primary_key :id
Integer :user_id, :null => false, :index => true
String :provider, :text => true
String :bounding_box_sw, :text => true
String :bounding_box_ne, :text => true
String :center, :text => true
Integer :zoom
end
end
def down
drop_table :maps
end
end