diff options
author | Alex S <alex.strizhakov@gmail.com> | 2019-04-03 20:51:09 +0700 |
---|---|---|
committer | Alex S <alex.strizhakov@gmail.com> | 2019-04-03 20:51:09 +0700 |
commit | 86f90c0a54d8f0ee6e6a787e8d28ebc53ff13b05 (patch) | |
tree | 0fd9557d1b6067af5d3b2bedb8e6c08291478dd7 /priv/repo/migrations/20190403131720_add_oauth_token_indexes.exs | |
parent | 7c003991d60804e0f3ff0758bd3e6d8044b40e68 (diff) | |
download | pleroma-86f90c0a54d8f0ee6e6a787e8d28ebc53ff13b05.tar.gz pleroma-86f90c0a54d8f0ee6e6a787e8d28ebc53ff13b05.zip |
adding indexes to oauth_tokens table
Diffstat (limited to 'priv/repo/migrations/20190403131720_add_oauth_token_indexes.exs')
-rw-r--r-- | priv/repo/migrations/20190403131720_add_oauth_token_indexes.exs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/priv/repo/migrations/20190403131720_add_oauth_token_indexes.exs b/priv/repo/migrations/20190403131720_add_oauth_token_indexes.exs new file mode 100644 index 000000000..ebcd29389 --- /dev/null +++ b/priv/repo/migrations/20190403131720_add_oauth_token_indexes.exs @@ -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 |