3

我正在使用Rails 3.2.6. 当我尝试制作计数器缓存时,我以某种方式收到此错误。
我怎样才能解决这个问题?我在这个应用程序上做了同样的事情,但在这个模型上没有。
我的代码或关联有什么问题?

命令 bundle exec rake db:migrate

日志

==  AddCommunityTopicsCountToCommunity: migrating =============================
-- add_column(:communities, :community_topics_count, :integer, {:default=>0})
   -> 0.0635s
rake aborted!
An error has occurred, all later migrations canceled:

community_topics_count is marked as readonly

模型/社区.rb

...
has_many :community_topics
...

模型/community_topic.rb

...
belongs_to :community, counter_cache: true
...

迁移文件

class AddCommunityTopicsCountToCommunity < ActiveRecord::Migration
  def up
    add_column :communities, :community_topics_count, :integer, :default => 0

    Community.reset_column_information
    Community.all.each do |p|
      p.update_attribute :community_topics_count, p.community_topics.length
    end
  end

  def down
    remove_column :communities, :community_topics_count
  end
end
4

3 回答 3

3
class AddCommunityTopicsCountToCommunity < ActiveRecord::Migration
  def up
    add_column :communities, :community_topics_count, :integer, :default => 0

    Community.reset_column_information
    Community.all.each do |c|
      Community.reset_counters(c.id, :community_topics)
    end
  end
end
于 2013-01-07T13:48:37.687 回答
2

添加 时conter_cache,无法使用 Rails 对其进行更新,默认情况下将其设置为只读。

你可以通过替换来绕过这个updated_attributeupdate_column它会跳过任何验证或回调。

于 2013-01-07T13:34:06.180 回答
2

conter_cache有自己的处理方法,查看文档了解详情。

在您的情况下,您可以使用类似的东西

Community.all.each do |p|
  Community.reset_counters(p.id, :community_topics)
end
于 2013-01-07T13:42:13.897 回答