diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2017-03-22 22:31:07 +0800 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2017-03-24 04:47:00 +0800 |
commit | 3e1bd5570f0ca277fb82a45d83f5bf44f3663a0d (patch) | |
tree | 50c19275e482f22cd8b6fdcbe904c8c74e5e5e8f /config/database.yml.postgresql | |
parent | 435468af380d0200c5b133f1c0263daf2c8a7783 (diff) | |
download | gitlab-ce-3e1bd5570f0ca277fb82a45d83f5bf44f3663a0d.tar.gz |
Test both PostgreSQL and MySQL for the win.
Diffstat (limited to 'config/database.yml.postgresql')
-rw-r--r-- | config/database.yml.postgresql | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/database.yml.postgresql b/config/database.yml.postgresql index 7067e0fe402..c517a4c0cb8 100644 --- a/config/database.yml.postgresql +++ b/config/database.yml.postgresql @@ -9,7 +9,7 @@ production: # username: git # password: # host: localhost - # port: 5432 + # port: 5432 # # Development specific @@ -21,6 +21,7 @@ development: pool: 5 username: postgres password: + # host: localhost # # Staging specific @@ -32,6 +33,7 @@ staging: pool: 5 username: postgres password: + # host: localhost # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". @@ -43,3 +45,4 @@ test: &test pool: 5 username: postgres password: + # host: localhost |