mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-13 19:16:15 +00:00
8 lines
199 B
Elixir
8 lines
199 B
Elixir
defmodule Pleroma.Repo.Migrations.UsersAddDisabledIndex do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create(index(:users, ["(info->'disabled')"], name: :users_disabled_index, using: :gin))
|
|
end
|
|
end
|