Rails应用程序试图更新一个不存在的列



这是在Ruby 1.9.3和Rails 3.2.19上。我对Rails不是很有经验。今天我只在我们的服务器上出现了这个问题,在开发服务器上一切正常。

每当我试图给出版物模型新的标签,我得到这个错误:

ActiveRecord::StatementInvalid (PG::UndefinedColumn: ERROR: column "taggings_count" does not exist
LINE 1: UPDATE "tags" SET "taggings_count" = OALESCE("taggings_count", 0) + 1 WHERE "tags"."id" = 47:  
  app/controllers/publications_controller.rb:162:in 'block in update'
  app/controllers/publications_controller.rb:161:in 'update'

,控制器的第162行是:

def update
    @publication = Publication.find(params[:id])
    if params[:clear_virtual_performances]
      @publication.virtual_performances.each {|vp| vp.destroy}
    end
    if media_id = params["selected_media"]
      pub_ids = @publication.publication_media_ids
      PublicationMedia.update(@publication.publication_media_ids, [{:selected => false}] * pub_ids.length)
      PublicationMedia.update(media_id, :selected => true)
    end
    respond_to do |format|
      if @publication.update_attributes(params[:publication])  // <-------------------
        expire_fragments
        flash[:notice] = 'Publication was successfully updated.'
        format.html { redirect_to(:action => 'show') }
        format.xml  { head :ok }
      else
        load_extra_vars_for_edit_form
                        Category.in_slug(params[:default_category])
        format.html { render :action => "edit" }
        format.xml  { render :xml => @publication.errors,
                             :status => :unprocessable_entity }
      end
    end
  end

然而,列"tagings_count"在标签中不存在,我不知道为什么它会在第一个地方更新。实际上,表on有以下列:idnamepositioncategory_idtag_group_id。下面是标签模型:

class Tag < ActiveRecord::Base
  has_many   :taggings
  belongs_to :category
  belongs_to :tag_group
  attr_accessible :name, :position, :category_id, :tag_group_id
end

如果有任何我需要提供的信息,请让我知道;我们必须尽快解决这个问题。我所需要的就是不发生错误,即使这意味着创建一个虚拟列或其他东西。

我猜你在标记中定义了一个counter_cache属性,类似于belongs_to :publication, counter_cache: true。这会导致计数器自动增加。

您可以删除counter_cache: true或进行迁移以添加列

相关内容

  • 没有找到相关文章

最新更新