0

我更新了我的 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

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

注册新用户的测试全部通过

4

1 回答 1

0

您是否尝试过使用

rake db:create:all

进而

rake db:test:prepare
于 2013-09-27T03:57:04.290 回答