【发布时间】:2015-10-13 00:02:32
【问题描述】:
我似乎无法弄清楚为什么我不断收到此错误。我正在尝试将评论表单添加到我正在制作的博客中,但它不起作用。以下是完整错误的内容。
ActiveRecord::StatementInvalid in Posts#show
显示 /Users/ipbyrne/FirstRailsApp/blog/app/views/posts/show.html.erb 其中第 17 行提出:
PG::UndefinedColumn: 错误: 列 cmets.post_id 不存在 第 1 行:从 "cmets" WHERE "cmets"."post_id" 中选择 COUNT() ... ^ : SELECT COUNT() FROM "cmets" WHERE "cmets"."post_id" = $1
</p>
<div id="comments">
<h2><%= @post.comments.count %> Comments</h2> <-- Says it breaks here
<%= render @post.comments %>
<h3>Add a comment:</h3>
据我所知,schema.rb 文件中的一个表中缺少一列?以防万一,这里的情况就是我的样子
# encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140911230918) do
create_table "comments", force: true do |t|
t.string "name"
t.text "body"
t.integer "post_id"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "comments", ["post_id"], name: "index_comments_on_post_id"
create_table "posts", force: true do |t|
t.string "title"
t.text "body"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "users", force: true do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "users", ["email"], name: "index_users_on_email", unique: true
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end
【问题讨论】:
-
您需要创建一个新的迁移以将 post_id 列添加到 cmets 表中,然后迁移您的数据库,然后创建一个新的评论。
-
有没有我这样做的功能?
-
@Isaac 的答案是否有帮助?
-
是的,它确实最终成为迁移问题。很抱歉,我花了这么长时间才回来!
标签: ruby-on-rails ruby postgresql