mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2025-01-15 19:00:54 +01:00
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
|