forked from AkkomaGang/akkoma
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
1 changed files with 7 additions and 0 deletions
|
@ -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 a new issue