function ldapauth_update_6004 in LDAP integration 6
File
- ./
ldapauth.install, line 284 - ldapauth module installation and upgrade code.
Code
function ldapauth_update_6004() {
$ret = array();
//db_query(" CHANGE COLUMN encrypted enc_type TINYINT NOT NULL DEFAULT 0");
db_change_field($ret, 'ldapauth', 'encrypted', 'enc_type', array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
));
return $ret;
}