function system_update_6056 in Drupal 6
Convert {session} data storage to blob.
Related topics
File
- modules/
system/ system.install, line 2742
Code
function system_update_6056() {
$ret = array();
db_change_field($ret, 'sessions', 'session', 'session', array(
'type' => 'blob',
'not null' => FALSE,
'size' => 'big',
));
return $ret;
}