I am working on an application in Rails for my college. The application was started by students from the previous year, and now my colleagues and I are asking for continued work on this. I took the application from github, I start the installation of the package, but when I started rake db:migrate, I got this PG::ConnectionBad: FATAL: password authentication failed for user "alphauser". In database.yml, I have these
development:
adapter: postgresql
encoding: unicode
database: alpha_database
host: localhost
pool: 5
username: alphauser
password: alphapassword
I do not know what to do in this case.
source
share