From 4b69046c310747cf6aa7013fd62da06e7a7ec727 Mon Sep 17 00:00:00 2001 From: Erik Michaels-Ober Date: Sat, 15 Oct 2011 11:50:08 -0700 Subject: [PATCH] Update example database configuration to work on Mac OS X 10.7 (Lion) Solution from: http://stackoverflow.com/questions/6770649/repairing-postgresql-after-upgrading-to-osx-10-7-lion/6770734#6770734 --- config/database.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/database.yml b/config/database.yml index d3f565c..c2da227 100644 --- a/config/database.yml +++ b/config/database.yml @@ -1,9 +1,9 @@ development: &DEVELOPMENT adapter: postgresql - database: adopt_a_thing_production - username: postgres - password: database: adopt_a_thing_development + host: localhost + password: + username: postgres # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake".