function ldap_query_update_7101 in Lightweight Directory Access Protocol (LDAP) 8.2
Same name and namespace in other branches
- 7.2 ldap_query/ldap_query.install \ldap_query_update_7101()
- 7 ldap_query/ldap_query.install \ldap_query_update_7101()
Make filter field type 'text' for longer filters
File
- ldap_query/
ldap_query.install, line 92 - Install, update and uninstall functions for the LDAP API module.
Code
function ldap_query_update_7101() {
db_change_field('ldap_query', 'filter', 'filter', array(
'type' => 'text',
'not null' => FALSE,
));
return t('ldap_query table field "filter" changed to type "text"');
}