Commit 2d1875960212d40cb348cefb29ac78828498bc66

Authored by Ben Bodenmiller
1 parent 143a03e5

Typo fix closes gitlabhq/gitlabhq/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
... ...