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-06 20:34:00 +0700
committerAlex S <alex.strizhakov@gmail.com>2019-04-06 20:34:00 +0700
commit7410aee886fbb38615bb595b8b7be0722761a0a4 (patch)
tree26372ac184398430a0a18f3285dba2b543632fb0 /priv/repo/migrations/20190403131720_add_oauth_token_indexes.exs
parentfa8483cb808ef4b8b907d7ec0eeb882f3f47d927 (diff)
parent3c5daa0235aaf47eeeda557fd677e3604cb7d701 (diff)
downloadpleroma-7410aee886fbb38615bb595b8b7be0722761a0a4.tar.gz
pleroma-7410aee886fbb38615bb595b8b7be0722761a0a4.zip
Merge develop to 770-add-emoji-tags
Merge conflict in test/web/mastodon_api/mastodon_api_controller_test.exs
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