diff options
| author | Michel Etienne | 2014-04-17 13:56:07 +0200 | 
|---|---|---|
| committer | Michel Etienne | 2014-04-17 13:56:07 +0200 | 
| commit | 893745898be4869370f5aa1a8c489814fa006ca8 (patch) | |
| tree | 452ee117f4b2759d852ed3cf6f92c9c326b00f1e | |
| parent | b83ba6ee317880554f4cd7f015b0c4b75d340bc2 (diff) | |
| download | chouette-core-893745898be4869370f5aa1a8c489814fa006ca8.tar.bz2 | |
add port in database config
| -rw-r--r-- | config/database.yml | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/config/database.yml b/config/database.yml index adec960b4..1685c484f 100644 --- a/config/database.yml +++ b/config/database.yml @@ -9,6 +9,7 @@ development:    database: chouette_dev    encoding: utf8    host: localhost +  port: 5432    username: chouette    password: chouette @@ -20,6 +21,7 @@ test:    database: chouette_test    encoding: utf8    host: localhost +  port: 5432    username: chouette    password: chouette @@ -28,5 +30,6 @@ production:    database: chouette2    encoding: utf8    host: localhost +  port: 5432    username: chouette    password: chouette | 
