我更新了我的 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
现在看来,当我运行我的应用程序并注册一个新用户时,开发数据库没有插入新用户......
注册新用户的测试全部通过