Skip to content
Snippets Groups Projects
Commit 34646c69 authored by href's avatar href
Browse files

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
parents 5a4e2905 b227ccab
No related branches found
No related tags found
No related merge requests found
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment