我已经添加了回形针宝石,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
。如何将字段添加到 rails 中的引脚表?