8 lines
140 B
Elixir
8 lines
140 B
Elixir
|
defmodule Pleroma.Repo.Migrations.AddLocalIndexToUser do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
create index(:users, [:local])
|
||
|
end
|
||
|
end
|