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

14 lines
204 B
Ruby

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