2023-08-14 16:54:51 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AddIndexableToAccounts < ActiveRecord::Migration[7.0]
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
2024-01-10 10:35:06 +00:00
|
|
|
safety_assured { add_column :accounts, :indexable, :boolean, default: false, null: false }
|
2023-08-14 16:54:51 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :accounts, :indexable
|
|
|
|
end
|
|
|
|
end
|