cartodb-4.42/db/migrate/20141119173820_add_content_guessing_param_to_syncs.rb

10 lines
199 B
Ruby
Raw Normal View History

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