summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190403131720_add_oauth_token_indexes.exs
blob: ab1bf2165e374d776f80189703e345c513947503 (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.AddOauthTokenIndexes do
  use Ecto.Migration

  def change do
    create_if_not_exists(unique_index(:oauth_tokens, [:token]))
    create_if_not_exists(index(:oauth_tokens, [:app_id]))
    create_if_not_exists(index(:oauth_tokens, [:user_id]))
  end
end