You are here

function password_policy_update_7206 in Password Policy 7.2

Store password_policy config as big text.

File

./password_policy.install, line 316
Install functions for Password Policy module.

Code

function password_policy_update_7206(&$sandbox) {
  db_change_field('password_policy', 'config', 'config', array(
    'type' => 'text',
    'not null' => FALSE,
    'description' => 'Configuration for Password Policy',
    'size' => 'big',
  ));
}