2023-07-12 09:47:08 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-02-03 03:59:51 +01:00
|
|
|
class AddOverwriteToImports < ActiveRecord::Migration[5.2]
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
|
|
|
safety_assured do
|
2024-01-10 11:35:06 +01:00
|
|
|
add_column :imports, :overwrite, :boolean, default: false, null: false
|
2019-02-03 03:59:51 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :imports, :overwrite, :boolean
|
|
|
|
end
|
|
|
|
end
|