Czy ustawiłeś hasło do swojego postgres
użytkownik?
W swoim config/database.yml
powinieneś mieć poprawnie skonfigurowane bazy danych:
development:
adapter: postgresql
encoding: unicode
database: your_app_development # name your development app something
host: localhost
pool: 5
username: your_username
password: your_password # or leave blank if you didn't set a password
test:
adapter: postgresql
encoding: unicode
database: your_app_test
host: localhost
pool: 5
username: your_username
password: your_password