function ldapdata_update_6002 in LDAP integration 6
File
- ./
ldapdata.install, line 110 - ldapdata module installation and upgrade code.
Code
function ldapdata_update_6002() {
$ret = array();
db_change_field($ret, 'ldapauth', 'ldapdata_rwattrs', 'ldapdata_rwattrs', array(
'type' => 'text',
'not null' => FALSE,
));
db_change_field($ret, 'ldapauth', 'ldapdata_roattrs', 'ldapdata_roattrs', array(
'type' => 'text',
'not null' => FALSE,
));
db_change_field($ret, 'ldapauth', 'ldapdata_mappings', 'ldapdata_mappings', array(
'type' => 'text',
'not null' => FALSE,
));
return $ret;
}