Mercurial > hg > soundsoftware-site
annotate db/migrate/20110223180953_salt_user_passwords.rb @ 1298:4f746d8966dd redmine_2.3_integration
Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:28:30 +0100 |
parents | 051f544170fe |
children |
rev | line source |
---|---|
Chris@245 | 1 class SaltUserPasswords < ActiveRecord::Migration |
Chris@245 | 2 |
Chris@245 | 3 def self.up |
Chris@245 | 4 say_with_time "Salting user passwords, this may take some time..." do |
Chris@245 | 5 User.salt_unsalted_passwords! |
Chris@245 | 6 end |
Chris@245 | 7 end |
Chris@245 | 8 |
Chris@245 | 9 def self.down |
Chris@245 | 10 # Unsalted passwords can not be restored |
Chris@245 | 11 raise ActiveRecord::IrreversibleMigration, "Can't decypher salted passwords. This migration can not be rollback'ed." |
Chris@245 | 12 end |
Chris@245 | 13 end |