cartodb/db/migrate/20120719105206_layers.rb
2020-06-15 10:58:47 +08:00

16 lines
233 B
Ruby

class LayersMigration < Sequel::Migration
def up
create_table :layers do
primary_key :id
String :options, :text => true
String :kind, :text => true
end
end
def down
drop_table :layers
end
end