You are here

function system_update_152 in Drupal 4

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

File

database/updates.inc, line 1021

Code

function system_update_152() {
  $ret = array();

  // Postgresql only update
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      $ret[] = update_sql("ALTER TABLE {forum} DROP shadow");
      break;
    case 'mysql':
    case 'mysqli':
      break;
  }
  return $ret;
}