function shib_auth_update_7001 in Shibboleth Authentication 7.4
Alter uid field so it supports larger values.
File
- ./
shib_auth.install, line 204 - Install file of the Shibboleth authentication module for Drupal system.
Code
function shib_auth_update_7001() {
db_change_field('shib_authmap', 'uid', 'uid', array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'The {users}.uid, which the persistent ID will be mapped to',
));
}