I have Question model as
class Question < ActiveRecord::Base
belongs_to :category, :counter_cache => true
end
I am using STI with Question model as base class.
I have category model as
class Category < ActiveRecord::Base
has_many :questions, :dependent => :destroy
end
in categories table i have questions_count column
Counter_cache is working fine when creating or destroying a question but when i update it doesn't counter the cache neither it increments one nor decrements other. I am using rails 3.0.7. Is this expected functionality or am i missing something.