You are here

function system_update_121 in Drupal 5

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

File

modules/system/system.install, line 1413

Code

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

  // Remove the unused page table.
  $ret[] = update_sql('DROP TABLE {page}');
  return $ret;
}