似乎无法使用开发数据库

时间:2013-09-27 03:44:36

标签: ruby-on-rails ruby rspec dbmigrate

我更新了我的database.yml文件,如下所示:

test:
  adapter: postgresql
  encoding: unicode
  database: startpoint_test
  hostname: localhost
  pool: 5
  username: postgres
  password: password

development:
  adapter: postgresql
  encoding: unicode
  database: startpoint_dev
  pool: 5
  username: postgres
  password: password

现在看来,当我运行我的应用程序并注册一个新用户时,开发数据库不会将新用户插入其中......

所有测试都通过了注册新用户

1 个答案:

答案 0 :(得分:0)

您是否尝试过使用

rake db:create:all

然后

rake db:test:prepare