about summary refs log tree commit diff
path: root/db/migrate/20170716191202_add_hide_notifications_to_mute.rb
blob: de7d2a4a21f8c13095d4b46af22d26a6aadda3d1 (plain) (blame)
1
2
3
4
5
class AddHideNotificationsToMute < ActiveRecord::Migration[5.1]
  def change
    add_column :mutes, :hide_notifications, :boolean, default: false, null: false
  end
end