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:
commit
f06444a289
|
@ -0,0 +1,7 @@
|
||||||
|
defmodule Pleroma.Repo.Migrations.AddInvisibleIndexToUsers do
|
||||||
|
use Ecto.Migration
|
||||||
|
|
||||||
|
def change do
|
||||||
|
create(index(:users, [:invisible]))
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue