1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2024-12-31 20:45:20 +00:00
mastodon/db/migrate/20181203021853_add_discoverable_to_accounts.rb

8 lines
167 B
Ruby

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