function ctools_update_7003 in Chaos Tool Suite (ctools) 7
Revert the length of the ctools_object_cache.name column back to 128.
File
- ./
ctools.install, line 291 - Contains install and update functions for ctools.
Code
function ctools_update_7003() {
db_delete('ctools_object_cache')
->execute();
db_change_field('ctools_object_cache', 'name', 'name', array(
'type' => 'varchar',
'length' => '128',
'not null' => TRUE,
'description' => 'The name of the object this cache is attached to.',
));
}