Nastavili jste heslo pro svůj postgres
uživatel?
Ve vašem config/database.yml
měli byste mít správně nastavené databáze:
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