Postgres on Rails FATAL: database does not exist

后端 未结 4 2031
离开以前
离开以前 2020-12-28 12:45

I\'ve reinstalled Postgres (9.2.4) and I\'m having trouble getting it set back up with Rails 3.2.11. I did:

brew install postgresql
initdb /usr/local/var/po         


        
4条回答
  •  情书的邮戳
    2020-12-28 13:34

    db:create:all and db:migrate did not work for me first. I changed my database name from development.pg to developmentpg in myapp/config/database.yml file:

    database: db/developmentpg

    and then rake db:create:all and rake db:migrate, it worked for me.

    Thank you

提交回复
热议问题