You are here

function system_update_152 in Drupal 5

Same name and namespace in other branches
  1. 4 database/updates.inc \system_update_152()

File

modules/system/system.install, line 2131

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