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