 1a4238bf98
			
		
	
	
		1a4238bf98
		
	
	
	
	
		
			
			Since those old migrations will now most likely only run during db init, there’s not much point in running them in the background concurrently anyway, so just drop the cncurrent setting rather than disabling migration locks.
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
| defmodule Pleroma.Repo.Migrations.AddObjectActorIndex do
 | |
|   use Ecto.Migration
 | |
| 
 | |
|   def change do
 | |
|     create(index(:objects, ["(data->>'actor')", "(data->>'type')"], name: :objects_actor_type))
 | |
|   end
 | |
| end
 |