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