-
-
Save tpendragon/5856321 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class UpdateCache < ActiveRecord::Migration | |
def up | |
User.all.each do |user| | |
User.reset_counters(user.id, :pets) | |
end | |
end | |
def down | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
servers: [""] | |
[] executing command | |
** [out :: ] == UpdateCache: migrating ==================================================== | |
** [out :: ] | |
** [out :: ] rake aborted! | |
** [out :: ] | |
** [out :: ] An error has occurred, this and all later migrations canceled: | |
** [out :: ] | |
** [out :: ] | |
** [out :: ] uninitialized constant User::Pet | |
** [out :: ] /var/www/Test/shared/bundle/ruby/1.9.1/gems/activerecord-3.2.13/lib/active_record/inheritance.rb:111:in `compute_type' | |
** [out :: ] | |
** [out :: ] /var/www/Test/shared/bundle/ruby/1.9.1/gems/activerecord-3.2.13/lib/active_record/reflection.rb:172:in `klass' | |
** [out :: ] | |
** [out :: ] /var/www/Test/shared/bundle/ruby/1.9.1/gems/activerecord-3.2.13/lib/active_record/counter_cache.rb:33:in `block in res | |
et_counters' | |
** [out :: ] | |
** [out :: ] /var/www/Test/shared/bundle/ruby/1.9.1/gems/activerecord-3.2.13/lib/active_record/counter_cache.rb:19:in `each' | |
** [out :: ] | |
** [out :: ] /var/www/Test/shared/bundle/ruby/1.9.1/gems/activerecord-3.2.13/lib/active_record/counter_cache.rb:19:in `reset_counte | |
rs' | |
** [out :: ] | |
** [out :: ] /var/www/Test/releases/20130625071422/db/migrate/20130625055633_update_cache.rb:4:in `block in up' | |
** [out :: ] | |
** [out :: ] /var/www/Test/releases/20130625071422/db/migrate/20130625055633_update_cache.rb:3:in `each' | |
** [out :: ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User < ActiveRecord::Base | |
# Include default devise modules. Others available are: | |
# :token_authenticatable, :confirmable, | |
# :lockable, :timeoutable and :omniauthable | |
devise :database_authenticatable, :registerable, | |
:recoverable, :rememberable, :trackable, | |
:confirmable | |
validates :email, :presence => true, :uniqueness => true | |
validates :username, :presence => true, :uniqueness => true | |
# Pets | |
has_many :pets, :foreign_key => :owner_id | |
# @return [Pet] Active pet for this user. | |
def active_pet | |
self.pets.length > 0 ? self.pets[0] : nil | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Pet < ActiveRecord::Base | |
belongs_to :owner, :class_name => "User", :counter_cache => true | |
validates :owner, :presence => true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment