Merge branch 'invisible-index' into 'develop'

Migrations: Add an index on the `invisible` field on users.

See merge request pleroma/pleroma!2895
This commit is contained in:
rinpatch 2020-08-17 12:38:14 +00:00
commit f06444a289

View file

@ -0,0 +1,7 @@
defmodule Pleroma.Repo.Migrations.AddInvisibleIndexToUsers do
use Ecto.Migration
def change do
create(index(:users, [:invisible]))
end
end