Commit 42b1a51aacf68bfef8eaa5c257b0368f6be1b559
Exists in
master
and in
4 other branches
Merge pull request #3987 from bbodenmiller/patch-3
Typo fix in database.md closes 3984
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
doc/install/databases.md
... | ... | @@ -20,7 +20,7 @@ GitLab supports the following databases: |
20 | 20 | # Create the GitLab production database |
21 | 21 | mysql> CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`; |
22 | 22 | |
23 | - # Grant the GitLab user necessary permissopns on the table. | |
23 | + # Grant the GitLab user necessary permissions on the table. | |
24 | 24 | mysql> GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO 'gitlab'@'localhost'; |
25 | 25 | |
26 | 26 | # Quit the database session | ... | ... |