2

我的 rails 版本是 3.2.8 并使用默认数据库。这是我的迁移代码:

class AddQuantityToLineItem < ActiveRecord::Migration
  def change
    add_column :line_items, :quantity, :integer,:default=>1
  end
end

我在这里找到了一个关于 :default 选项的解释,正如它所说,当我创建一个新的 LineItem 时,它应该有一个默认数量 = 1,但这是我从 rails 控制台得到的:

lineb=LineItem.new
#<LineItem id: nil, product_id: nil, cart_id: nil, created_at: nil, updated_at: nil, quantity: nil>

当我从数据库中获取 LineItem 时,数量字段也为零。

这是 db/schema.rb :

ActiveRecord::Schema.define(:version => 20121008065102) do

  create_table "carts", :force => true do |t|
    t.datetime "created_at", :null => false
    t.datetime "updated_at", :null => false
  end

  create_table "line_items", :force => true do |t|
    t.integer  "product_id"
    t.integer  "cart_id"
    t.datetime "created_at", :null => false
    t.datetime "updated_at", :null => false
    t.integer  "quantity"
  end

  create_table "products", :force => true do |t|
    t.string   "title"
    t.text     "description"
    t.string   "image_url"
    t.decimal  "price",       :precision => 8, :scale => 2
    t.datetime "created_at",                                :null => false
    t.datetime "updated_at",                                :null => false
  end

end
4

1 回答 1

4

您的迁移应该可以正常工作。根据您的架构,虽然它看起来并没有真正生效,因为t.integer "quantity"它没有默认值。

架构中的行quantity应该如下所示:

t.integer  "quantity",   :default => 1

确保您已实际运行迁移 ( bundle exec rake db:migrate),如果这不起作用,则回滚 ( bundle exec rake db:rollback) 并再次运行迁移(如 @surase.prasad 建议的那样)。

于 2012-10-08T09:29:57.887 回答