adding indexes to oauth_tokens table

This commit is contained in:
Alex S 2019-04-03 20:51:09 +07:00
parent 7c003991d6
commit 86f90c0a54
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.AddOauthTokenIndexes do
use Ecto.Migration
def change do
create(unique_index(:oauth_tokens, [:token]))
create(index(:oauth_tokens, [:app_id]))
create(index(:oauth_tokens, [:user_id]))
end
end