You are here

function ldap_servers_update_7204 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_7204()

Add picture_attr field in schema

File

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

Code

function ldap_servers_update_7204() {
  db_add_field('ldap_servers', 'picture_attr', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => FALSE,
  ));
}