function cas_server_update_7102 in CAS 7
Increases 'service' field size to 1024.
File
- ./
cas_server.install, line 113 - Installation hooks for the CAS Server module.
Code
function cas_server_update_7102() {
db_change_field('cas_server_tickets', 'service', 'service', array(
'type' => 'varchar',
'length' => 1024,
'not null' => TRUE,
'default' => '',
));
}