function system_update_163 in Drupal 5
Same name and namespace in other branches
- 4 database/updates.inc \system_update_163()
File
- modules/
system/ system.install, line 2418
Code
function system_update_163() {
$ret = array();
if ($GLOBALS['db_type'] == 'mysql' || $GLOBALS['db_type'] == 'mysqli') {
$ret[] = update_sql('ALTER TABLE {cache} CHANGE data data LONGBLOB');
}
return $ret;
}