blob: ba6ff78b5e1b8dbf0ac428916e6778eeca3b0cd8 (
plain)
| 1
2
3
4
5
6
7
 | 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
 |