summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhref <href+git-pleroma@random.sh>2019-02-22 11:16:10 +0000
committerhref <href+git-pleroma@random.sh>2019-02-22 11:16:10 +0000
commit34646c6923a928a452203f4722f2b81cf23c4853 (patch)
tree9ec70a047d3b425cae9042c67580543528caa565
parent5a4e2905fecfd21cf92f6b2844f15f5ee84b33f5 (diff)
parentb227ccab827471359f539d23a14413e70ad67e33 (diff)
downloadpleroma-34646c6923a928a452203f4722f2b81cf23c4853.tar.gz
pleroma-34646c6923a928a452203f4722f2b81cf23c4853.zip
Merge branch 'oauth2_scopes_migration_hotfix' into 'develop'
Fixed `scopes` of apps / authorizations / tokens from apps initially created with space-delimited `scope` Closes #660 See merge request pleroma/pleroma!853
-rw-r--r--priv/repo/migrations/20190222104808_data_migration_normalize_scopes.exs11
1 files changed, 11 insertions, 0 deletions
diff --git a/priv/repo/migrations/20190222104808_data_migration_normalize_scopes.exs b/priv/repo/migrations/20190222104808_data_migration_normalize_scopes.exs
new file mode 100644
index 000000000..d44e5096b
--- /dev/null
+++ b/priv/repo/migrations/20190222104808_data_migration_normalize_scopes.exs
@@ -0,0 +1,11 @@
+defmodule Pleroma.Repo.Migrations.DataMigrationNormalizeScopes do
+ use Ecto.Migration
+
+ def up do
+ for t <- [:apps, :oauth_authorizations, :oauth_tokens] do
+ execute "UPDATE #{t} SET scopes = string_to_array(array_to_string(scopes, ' '), ' ');"
+ end
+ end
+
+ def down, do: :noop
+end