Merge pull request 'Manually define PATH for Arch Linux users in systemd unit' (...
[akkoma] / priv / repo / migrations / 20190213185600_data_migration_populate_o_auth_scopes.exs
index 7afbcbd76a37af915601d9ff0460dc6b3bc1189a..ef5b3512537844c611c7395a85e436d2e929fe21 100644 (file)
@@ -3,7 +3,7 @@ defmodule Pleroma.Repo.Migrations.DataMigrationPopulateOAuthScopes do
 
   def up do
     for t <- [:oauth_authorizations, :oauth_tokens] do
-      execute "UPDATE #{t} SET scopes = apps.scopes FROM apps WHERE #{t}.app_id = apps.id;"
+      execute("UPDATE #{t} SET scopes = apps.scopes FROM apps WHERE #{t}.app_id = apps.id;")
     end
   end