You are here

function system_update_163 in Drupal 4

Same name and namespace in other branches
  1. 5 modules/system/system.install \system_update_163()

File

database/updates.inc, line 1308

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;
}