summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200526144426_add_apps_indexes.exs
blob: 5cb6a0473eab49b181eee777414057024f51c0b6 (plain)
1
2
3
4
5
6
7
defmodule Pleroma.Repo.Migrations.AddAppsIndexes do
  use Ecto.Migration

  def change do
    create(index(:apps, [:client_id, :client_secret]))
  end
end