summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190403131720_add_oauth_token_indexes.exs
diff options
context:
space:
mode:
authorAlex S <alex.strizhakov@gmail.com>2019-04-03 20:51:09 +0700
committerAlex S <alex.strizhakov@gmail.com>2019-04-03 20:51:09 +0700
commit86f90c0a54d8f0ee6e6a787e8d28ebc53ff13b05 (patch)
tree0fd9557d1b6067af5d3b2bedb8e6c08291478dd7 /priv/repo/migrations/20190403131720_add_oauth_token_indexes.exs
parent7c003991d60804e0f3ff0758bd3e6d8044b40e68 (diff)
downloadpleroma-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.exs9
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