You are here

function ldap_servers_update_7111 in Lightweight Directory Access Protocol (LDAP) 8.2

Same name and namespace in other branches
  1. 7.2 ldap_servers/ldap_servers.install \ldap_servers_update_7111()

add field groupTestGroupDnWriteable to ldap_servers table

File

ldap_servers/ldap_servers.install, line 450
Install, update and uninstall functions for the LDAP API module.

Code

function ldap_servers_update_7111() {
  if (!db_field_exists('ldap_servers', 'groupTestGroupDnWriteable')) {
    db_add_field('ldap_servers', 'groupTestGroupDnWriteable', array(
      'type' => 'varchar',
      'length' => '255',
      'not null' => FALSE,
    ));
    $msg = t('"groupTestGroupDnWriteable" field added to ldap_servers table');
  }
}