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

10 lines
170 B
Ruby

Sequel.migration do
up do
drop_column :users, :dynamic_cdn_enabled
end
down do
add_column :users, :dynamic_cdn_enabled, :boolean, default: false
end
end