mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-19 11:45:01 +00:00
7 lines
199 B
Elixir
7 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
|