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