7 lines
		
	
	
	
		
			150 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			150 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
defmodule Pleroma.Repo.Migrations.AddInvisibleIndexToUsers do
 | 
						|
  use Ecto.Migration
 | 
						|
 | 
						|
  def change do
 | 
						|
    create(index(:users, [:invisible]))
 | 
						|
  end
 | 
						|
end
 |