Skip to content

Instantly share code, notes, and snippets.

@therabidbanana
Created February 3, 2013 03:30
Show Gist options
  • Save therabidbanana/4700442 to your computer and use it in GitHub Desktop.
Save therabidbanana/4700442 to your computer and use it in GitHub Desktop.
Migration example for our mongo
require './config/boot'
Dtime::Users::User.find_each do |user|
user.set({
follower_count: user.follower_ids.size,
following_count: user.followed_user_ids.size
})
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment