1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-21 13:59:59 +01:00
pleroma/priv/repo/migrations/20190123092341_users_add_is_admin_index.exs
2019-02-20 16:51:25 +00:00

8 lines
198 B
Elixir

defmodule Pleroma.Repo.Migrations.UsersAddIsAdminIndex do
use Ecto.Migration
def change do
create(index(:users, ["(info->'is_admin')"], name: :users_is_admin_index, using: :gin))
end
end