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/20151002104452_remove_paren...

14 lines
204 B

Sequel.migration do
up do
alter_table :layers do
drop_column :parent_id
end
end
down do
alter_table :layers do
add_column :parent_id, :uuid, :null => true
end
end
end