我是rails 4的新手我希望在我的app.i尝试修复中添加多个图像post。我最终得到了新的错误。
Mysql2::Error: Unknown column 'pictures.product_id' in 'where clause': SELECT pictures.* FROM pictures WHERE pictures.product_id = 9
schema.rb
create_table "products", force: :cascade do |t|
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "name", limit: 255
t.integer "price", limit: 4
t.text "description", limit: 65535
t.text "reason", limit: 65535
t.integer "user_id", limit: 4
t.string "image_file_name", limit: 255
t.string "image_content_type", limit: 255
t.integer "image_file_size", limit: 4
t.datetime "image_updated_at"
t.string "status", limit: 255
t.integer "category_id", limit: 4
end
有人可以帮助我吗
答案 0 :(得分:0)
根据您的架构,您在products表中没有product_id列。
如果您需要product_id列,则必须使用ALTER TABLE查询并在product中添加product_id 表格如
ALTER TABLE products
ADD COLUMN product_id INT NOT NULL AUTO_INCREMENT FIRST,
ADD PRIMARY KEY (product_id);