cartodb-4.42/db/migrate/20151002104452_remove_parent_id_from_layers.rb

14 lines
204 B
Ruby
Raw Normal View History

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