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.
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			269 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			269 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
defmodule Pleroma.Repo.Migrations.AddFTSIndexToActivities do
 | 
						|
  use Ecto.Migration
 | 
						|
 | 
						|
  def change do
 | 
						|
    create(
 | 
						|
      index(:activities, ["(to_tsvector('english', data->'object'->>'content'))"],
 | 
						|
        using: :gin,
 | 
						|
        name: :activities_fts
 | 
						|
      )
 | 
						|
    )
 | 
						|
  end
 | 
						|
end
 |