Installing Postgres on windows for use with Ruby-on-Rails

前端 未结 3 1676
梦如初夏
梦如初夏 2020-11-29 18:06

Currently I get the following error:

PGError (FATAL: password authentication failed for user \"postgres\" ):

when my app tries

3条回答
  •  不知归路
    2020-11-29 18:19

    the answer from AJP is the correct one with just a small re-config. The line

        database: db/development 
    

    does not work for me. I have to change it to

        database: development
    

    I use this for ruby on rails for the command

        rake db:create 
    

    and

        rake db:migrate
    

    to work

提交回复
热议问题