0

我已经添加了回形针宝石,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 中的引脚表?

4

1 回答 1

1

您需要为此创建另一个迁移(或者只需将其添加到由回形针创建的迁移中,但最好添加另一个迁移)。您可以通过运行以下命令来做到这一点

rails g migration add_title_to_pins title
rake db:migrate
于 2013-04-12T01:51:35.477 回答