* Change ActivityPub follower/following collections to not link first page * Add support for hiding followers and following of remote users * Switch to using a single `hide_collections` column * Address code style remarks
		
			
				
	
	
		
			5 lines
		
	
	
	
		
			143 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			5 lines
		
	
	
	
		
			143 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
class AddHideCollectionsToAccounts < ActiveRecord::Migration[5.2]
 | 
						|
  def change
 | 
						|
    add_column :accounts, :hide_collections, :boolean
 | 
						|
  end
 | 
						|
end
 |