You are here

function password_policy_update_6101 in Password Policy 6

Increase length of {password_policy_history}.pass to support phpass.

File

./password_policy.install, line 333
File module installation and upgrade code.

Code

function password_policy_update_6101() {
  $ret = array();
  db_change_field($ret, 'password_policy_history', 'pass', 'pass', array(
    'type' => 'varchar',
    'length' => 128,
    'not null' => TRUE,
  ));
  return $ret;
}