Skip to content
Snippets Groups Projects
Commit b227ccab authored by Ivan Tashkinov's avatar Ivan Tashkinov
Browse files

Fixed `scopes` of apps / authorizations / tokens from apps initially created...

Fixed `scopes` of apps / authorizations / tokens from apps initially created with space-delimited `scope`.
parent 5a4e2905
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