 94c1f28ba4
			
		
	
	
		94c1f28ba4
		
	
	
	
	
		
			
			This prevents a problem that made the local timeline very slow when there were few posts.
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
| defmodule Pleroma.Repo.Migrations.ModifyActivityIndex do
 | |
|   use Ecto.Migration
 | |
|   @disable_ddl_transaction true
 | |
| 
 | |
|   def change do
 | |
|     create index(:activities, ["id desc nulls last", "local"], concurrently: true)
 | |
|     drop_if_exists index(:activities, ["id desc nulls last"])
 | |
|   end
 | |
| end
 |