From 01bc2f84a92660e8bf8a6084cd9ce08c5f799f3b Mon Sep 17 00:00:00 2001
From: Stanislas <angristan@pm.me>
Date: Sun, 27 Jan 2019 23:56:07 +0100
Subject: [PATCH] Fix SUPERUSER postgres command (#9877)

---
 lib/mastodon/migration_helpers.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/mastodon/migration_helpers.rb b/lib/mastodon/migration_helpers.rb
index f5dc7e1c6e..146eba8ec6 100644
--- a/lib/mastodon/migration_helpers.rb
+++ b/lib/mastodon/migration_helpers.rb
@@ -889,7 +889,7 @@ table #{table}.
 If you are using PostgreSQL you can solve this by logging in to the GitLab
 database (#{dbname}) using a super user and running:
 
-    ALTER #{user} WITH SUPERUSER
+    ALTER USER #{user} WITH SUPERUSER
 
 For MySQL you instead need to run:
 
-- 
GitLab