mirror of https://github.com/tootsuite/mastodon
				
				
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			409 B
		
	
	
	
		
			Ruby
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			409 B
		
	
	
	
		
			Ruby
		
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
 | 
						|
 | 
						|
class AddHideNotificationsToMute < ActiveRecord::Migration[5.1]
 | 
						|
  include Mastodon::MigrationHelpers
 | 
						|
 | 
						|
  disable_ddl_transaction!
 | 
						|
 | 
						|
  def up
 | 
						|
    add_column_with_default :mutes, :hide_notifications, :boolean, default: true, allow_null: false
 | 
						|
  end
 | 
						|
 | 
						|
  def down
 | 
						|
    remove_column :mutes, :hide_notifications
 | 
						|
  end
 | 
						|
end
 |