Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAndrew Kumanyaev <me@zzet.org>2013-03-24 13:48:23 +0400
committerAndrew Kumanyaev <me@zzet.org>2013-03-24 13:48:23 +0400
commit159cd0d742df2ed3b234f47cb19d99b68434c9fe (patch)
tree2faa84506f7e4704341f89893750325bbb31fc5c /doc
parent979dcdba958cb6063c2676532a25ac407b601645 (diff)
Update databases.md
Diffstat (limited to 'doc')
-rw-r--r--doc/install/databases.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/install/databases.md b/doc/install/databases.md
index 2c4fb9dbfff..fade5d4f072 100644
--- a/doc/install/databases.md
+++ b/doc/install/databases.md
@@ -38,10 +38,10 @@ GitLab supports the following databases:
sudo -u postgres psql -d template1
# Create a user for GitLab. (change $password to a real password)
- template1=# CREATE USER gitlab WITH PASSWORD '$password';
+ template1=# CREATE USER git WITH PASSWORD '$password';
# Create the GitLab production database & grant all privileges on database
- template1=# CREATE DATABASE gitlabhq_production OWNER gitlab;
+ template1=# CREATE DATABASE gitlabhq_production OWNER git;
# Quit the database session
template1=# \q