mastodon/db/migrate/20181203021853_add_discoverable_to_accounts.rb
2024-12-11 14:25:48 +00:00

8 lines
215 B
Ruby

# frozen_string_literal: true
class AddDiscoverableToAccounts < ActiveRecord::Migration[5.2]
def change
add_column :accounts, :discoverable, :boolean # rubocop:disable Rails/ThreeStateBooleanColumn
end
end