view .svn/pristine/7f/7ff580843dffaee1ae5e2a96cf519330f6f872bc.svn-base @ 1250:55a62689cc97 redmine-2.2-integration

printing the html correctly (not escaping it)
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 03 Apr 2013 15:55:50 +0100
parents cbb26bc654de
children
line wrap: on
line source
class SaltUserPasswords < ActiveRecord::Migration
  
  def self.up
    say_with_time "Salting user passwords, this may take some time..." do
      User.salt_unsalted_passwords!
    end
  end

  def self.down
    # Unsalted passwords can not be restored
    raise ActiveRecord::IrreversibleMigration, "Can't decypher salted passwords. This migration can not be rollback'ed."
  end
end