Skip to content

Instantly share code, notes, and snippets.

@kernow
Created June 22, 2011 14:27
Show Gist options
  • Save kernow/1040201 to your computer and use it in GitHub Desktop.
Save kernow/1040201 to your computer and use it in GitHub Desktop.
class CreateUserRememberTokens < ActiveRecord::Migration
def self.up
User.all.each do |u|
u.reset_remember_token!
puts u.reload.remember_token
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment