diff --git a/README.md b/README.md index e33184bf1..b4b35074e 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Les informations nécessaire à l'initialisation de la base doivent être pré-c su - postgres psql - > create user tps with password 'lol' superuser; + > create user tps_development with password 'tps_development' superuser; > create user tps_test with password 'tps_test' superuser; > \q diff --git a/config/database.yml b/config/database.yml index 9f8cb0b14..75dedfa2d 100644 --- a/config/database.yml +++ b/config/database.yml @@ -4,9 +4,8 @@ development: database: tps_development host: localhost pool: 5 - username: tps - password: lol - + username: tps_development + password: tps_development test: adapter: postgresql