function ctools_update_7001 in Chaos Tool Suite (ctools) 7
Increase the length of the ctools_object_cache.obj column.
File
- ./
ctools.install, line 271 - Contains install and update functions for ctools.
Code
function ctools_update_7001() {
db_change_field('ctools_object_cache', 'obj', 'obj', array(
'type' => 'varchar',
'length' => '128',
'not null' => TRUE,
'description' => 'The type of the object this cache is attached to; this essentially represents the owner so that several sub-systems can use this cache.',
));
}