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

10 lines
199 B
Ruby

Sequel.migration do
up do
add_column :synchronizations, :content_guessing, :boolean, null: false, default: false
end
down do
drop_column :synchronizations, :content_guessing
end
end