Commit 159cd0d742df2ed3b234f47cb19d99b68434c9fe
1 parent
979dcdba
Exists in
master
and in
4 other branches
Update databases.md
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
doc/install/databases.md
| ... | ... | @@ -38,10 +38,10 @@ GitLab supports the following databases: |
| 38 | 38 | sudo -u postgres psql -d template1 |
| 39 | 39 | |
| 40 | 40 | # Create a user for GitLab. (change $password to a real password) |
| 41 | - template1=# CREATE USER gitlab WITH PASSWORD '$password'; | |
| 41 | + template1=# CREATE USER git WITH PASSWORD '$password'; | |
| 42 | 42 | |
| 43 | 43 | # Create the GitLab production database & grant all privileges on database |
| 44 | - template1=# CREATE DATABASE gitlabhq_production OWNER gitlab; | |
| 44 | + template1=# CREATE DATABASE gitlabhq_production OWNER git; | |
| 45 | 45 | |
| 46 | 46 | # Quit the database session |
| 47 | 47 | template1=# \q | ... | ... |