system_update_163
- Versions
- 4.7 – 5
system_update_163()
Code
modules/system/system.install, line 2418
<?php
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;
}
?>Login or register to post comments 