Browse Source

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
tags/v1.1.4
href 5 years ago
parent
commit
34646c6923
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      priv/repo/migrations/20190222104808_data_migration_normalize_scopes.exs

+ 11
- 0
priv/repo/migrations/20190222104808_data_migration_normalize_scopes.exs View File

@@ -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

Loading…
Cancel
Save