You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/db/migrate/20120719105206_layers.rb

16 lines
233 B

4 years ago
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