I have created Postgresql database locally. Postgre database
And here is my database.yml file. default: &default adapter: postgresql pool: 5 timeout: 5000
development:
<<: *default
database: myrubyblog
username: postgres
password: Naruto1994.
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
<<: *default
database: myrubyblog
username: postgres
password: Naruto1994.
production:
<<: *default
database: myrubyblog
username: postgres
password: Naruto1994.
I have made sure to enter correct password but I am still getting this error.