2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-27 14:09:10 +00:00
|
|
|
class AddMemorialToAccounts < ActiveRecord::Migration[5.2]
|
2017-11-07 18:06:44 +00:00
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
2024-01-10 10:35:06 +00:00
|
|
|
safety_assured { add_column :accounts, :memorial, :bool, default: false, null: false }
|
2017-11-07 18:06:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :accounts, :memorial
|
|
|
|
end
|
|
|
|
end
|