Hi
I am trying to get RoR to work with Postgresql 8,2.5 (latest stable
version)
Steps taken
- Download Postgresql 1.82 and installed successfully
- Edited my Database.yml
development:
adapter: postgresql
database: test_development
username: postgres
password: xxx
host: localhost
test:
adapter: postgresql
database: test_test
username: postgres
password: xxx
host: localhost
production:
adapter: postgres
database: test_production
username: root
password: xxx
host: localhost
I had earlier created an appropriate migration file
then rake db:migrate
Result :
rake aborted!
database configuration specifies nonexistent postgresql adapter
I then use gem install postgres-pr
Then rake db:migrate
Result : same error message
rake aborted!
database configuration specifies nonexistent postgresql adapter
Any assistance would be appreciated !
TIA.