Merge branch 'mysql-migration-trigger-permissions' into 'master'

Add dbname to MySQL migration GRANT command

See merge request gitlab-org/gitlab-ce!21719
This commit is contained in:
Andreas Brandl 2018-10-23 12:30:14 +00:00
commit a84469a345

View file

@ -937,7 +937,7 @@ database (#{dbname}) using a super user and running:
For MySQL you instead need to run:
GRANT ALL PRIVILEGES ON *.* TO #{user}@'%'
GRANT ALL PRIVILEGES ON #{dbname}.* TO #{user}@'%'
Both queries will grant the user super user permissions, ensuring you don't run
into similar problems in the future (e.g. when new tables are created).