rake db:create throws “database does not exist” error with postgresql

前端 未结 10 1014
忘了有多久
忘了有多久 2021-01-30 19:58

I\'m using rails 4.1.5 with postgresql 9.1 under Debian 7, and I\'m not able to create a database in my development environment. When I run

bin/rake db:create
         


        
10条回答
  •  我在风中等你
    2021-01-30 20:33

    You might try running this command-

    bin/rake db:create RAILS_ENV=development
    

    Or this command-

    bin/rake db:migrate RAILS_ENV=development
    

提交回复
热议问题