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