2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-06 16:36:11 +00:00
|
|
|
class AddDiscoverableToAccounts < ActiveRecord::Migration[5.2]
|
|
|
|
def change
|
2024-12-11 14:25:48 +00:00
|
|
|
add_column :accounts, :discoverable, :boolean # rubocop:disable Rails/ThreeStateBooleanColumn
|
2018-12-06 16:36:11 +00:00
|
|
|
end
|
|
|
|
end
|