cartodb-4.42/db/migrate/20120719105206_layers.rb

16 lines
233 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
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