summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2014-09-12 18:43:28 +0200
committerRobert Schilling <rschilling@student.tugraz.at>2014-09-12 18:43:28 +0200
commit5ac019946f327852d9c355bbe95de1f0c1cfad59 (patch)
tree1c448a76b537ed36f38b778fe2ffa7ea41257177
parent72d3d67a1825f73d8ff5399c76aa6cdd5369c7af (diff)
parent377a5bd5216a9bd3fb66aad340414b3b4b88dbcc (diff)
downloadgitlab-ce-5ac019946f327852d9c355bbe95de1f0c1cfad59.tar.gz
Merge pull request #7743 from bbodenmiller/patch-12
formatting changes, table->database
-rw-r--r--doc/install/database_mysql.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/install/database_mysql.md b/doc/install/database_mysql.md
index 5e9bfff5653..362c492d0ac 100644
--- a/doc/install/database_mysql.md
+++ b/doc/install/database_mysql.md
@@ -28,14 +28,14 @@ We do not recommend using MySQL due to various issues. For example, case [(in)se
# change $password in the command below to a real password you pick
mysql> CREATE USER 'git'@'localhost' IDENTIFIED BY '$password';
- # Ensure you can use the InnoDB engine which is necessary to support long indexes.
+ # Ensure you can use the InnoDB engine which is necessary to support long indexes
# If this fails, check your MySQL config files (e.g. `/etc/mysql/*.cnf`, `/etc/mysql/conf.d/*`) for the setting "innodb = off"
mysql> SET storage_engine=INNODB;
# Create the GitLab production database
mysql> CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
- # Grant the GitLab user necessary permissions on the table.
+ # Grant the GitLab user necessary permissions on the database
mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, LOCK TABLES ON `gitlabhq_production`.* TO 'git'@'localhost';
# Quit the database session