about summary refs log tree commit diff
path: root/db/migrate/20200719033609_add_show_unlisted_to_accounts.rb
blob: a9bb167204345f986e00e671fd8fd991e5fac5fe (plain) (blame)
1
2
3
4
5
6
7
class AddShowUnlistedToAccounts < ActiveRecord::Migration[5.2]
  def change
    safety_assured do
      add_column :accounts, :show_unlisted, :boolean, null: false, default: true
    end
  end
end