我已经使用rails generate paperclip pin image
添加了回形针宝石
但是我想添加一个名为title which would be a string
的字段。
我尝试将其添加到 pin.rb 文件
class Pin < ActiveRecord::Base
attr_accessible :description, :image, :title
然后将其放在我的视图 html.erb 页面中,但遇到错误:title did not schema
。如何在轨道中的引脚表中添加字段?
答案 0 :(得分:1)
您需要为此创建另一个迁移(或者只是在回形针创建的迁移中添加它,但最好添加另一个迁移)。您可以通过运行以下
来实现rails g migration add_title_to_pins title
rake db:migrate