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