mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2025-02-07 14:03:37 +01:00
Add index on subscribers
This commit is contained in:
parent
a270e7a191
commit
ffac2593ea
1 changed files with 8 additions and 0 deletions
|
@ -0,0 +1,8 @@
|
||||||
|
defmodule Pleroma.Repo.Migrations.AddIndexOnSubscribers do
|
||||||
|
use Ecto.Migration
|
||||||
|
|
||||||
|
@disable_ddl_transaction true
|
||||||
|
def change do
|
||||||
|
create index(:users, ["(info->'subscribers')"], name: :users_subscribers_index, using: :gin, concurrently: true)
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue