mirror of
https://git.pleroma.social/sjw/pleroma.git
synced 2025-01-06 14:45:57 +01:00
9 lines
258 B
Elixir
9 lines
258 B
Elixir
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
|