重命名列,rspec 似乎看到旧列
我正在使用 rspec 和factory_girl。
我重命名了数据库中的列,但我的工厂正在返回旧列。
我怎样才能重置这个缓存?
I'm using rspec and factory_girl.
i renamed columns in the db, yet my factories are returning the old columns.
How can I reset this cache?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有运行
rake db:test:prepare
将架构复制到测试数据库中。You didn't run
rake db:test:prepare
to copy over the schema into your test database.