在我的 rails 应用程序中,我有一个模型Events
。它有几个列是通过遵循本指南https://devcenter.heroku.com/articles/export-from-heroku-postgres创建的,然后执行rake db:schema:dump
.
现在我想在Event
模型中添加一些新列。我尝试编辑schema.rb
并重新启动应用程序,但这似乎不起作用。有人知道正确的方法吗?
- - 编辑 - - - -
具体来说,我将此行添加Event
到schema.rb
.
t.datetime "date_time"
当我单击链接以在 rails 应用程序中添加事件时,我收到此错误:
undefined method `date_time' for #<Event:0x007fdb59a87118>