logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

20170716191202_add_hide_notifications_to_mute.rb (380B)


  1. require Rails.root.join('lib', 'mastodon', 'migration_helpers')
  2. class AddHideNotificationsToMute < ActiveRecord::Migration[5.1]
  3. include Mastodon::MigrationHelpers
  4. disable_ddl_transaction!
  5. def up
  6. add_column_with_default :mutes, :hide_notifications, :boolean, default: true, allow_null: false
  7. end
  8. def down
  9. remove_column :mutes, :hide_notifications
  10. end
  11. end