cartodb/db/migrate/20141119173820_add_content_guessing_param_to_syncs.rb

10 lines
199 B
Ruby
Raw Normal View History

2020-06-15 10:58:47 +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