You are here

system.install in Drupal 5

Same filename and directory in other branches
  1. 6 modules/system/system.install
  2. 7 modules/system/system.install

File

modules/system/system.install
View source
<?php

define('DRUPAL_MINIMUM_PHP', '4.3.5');
define('DRUPAL_MINIMUM_MYSQL', '3.23.17');

// If using MySQL
define('DRUPAL_MINIMUM_PGSQL', '7.4');

// If using PostgreSQL

/**
 * Test and report Drupal installation requirements.
 */
function system_requirements($phase) {
  $requirements = array();

  // Ensure translations don't break at install time
  $t = get_t();

  // Report Drupal version
  if ($phase == 'runtime') {
    $requirements['drupal'] = array(
      'title' => $t('Drupal'),
      'value' => VERSION,
      'severity' => REQUIREMENT_INFO,
      'weight' => -10,
    );
  }

  // Web server information.
  $software = $_SERVER['SERVER_SOFTWARE'];
  $requirements['webserver'] = array(
    'title' => $t('Web server'),
    'value' => $software,
  );

  // Test PHP version
  $requirements['php'] = array(
    'title' => $t('PHP'),
    'value' => $phase == 'runtime' ? l(phpversion(), 'admin/logs/status/php') : phpversion(),
  );
  if (version_compare(phpversion(), DRUPAL_MINIMUM_PHP) < 0) {
    $requirements['php']['description'] = $t('Your PHP installation is too old. Drupal requires at least PHP %version.', array(
      '%version' => DRUPAL_MINIMUM_PHP,
    ));
    $requirements['php']['severity'] = REQUIREMENT_ERROR;
  }

  // Test PHP register_globals setting.
  $requirements['php_register_globals'] = array(
    'title' => $t('PHP register globals'),
  );
  $register_globals = trim(ini_get('register_globals'));

  // Unfortunately, ini_get() may return many different values, and we can't
  // be certain which values mean 'on', so we instead check for 'not off'
  // since we never want to tell the user that their site is secure
  // (register_globals off), when it is in fact on. We can only guarantee
  // register_globals is off if the value returned is 'off', '', or 0.
  if (!empty($register_globals) && strtolower($register_globals) != 'off') {
    $requirements['php_register_globals']['description'] = $t('<em>register_globals</em> is enabled. Drupal requires this configuration directive to be disabled. Your site may not be secure when <em>register_globals</em> is enabled. The PHP manual has instructions for <a href="http://php.net/configuration.changes">how to change configuration settings</a>.');
    $requirements['php_register_globals']['severity'] = REQUIREMENT_ERROR;
    $requirements['php_register_globals']['value'] = $t("Enabled ('@value')", array(
      '@value' => $register_globals,
    ));
  }
  else {
    $requirements['php_register_globals']['value'] = $t('Disabled');
  }

  // Test DB version
  global $db_type;
  if (function_exists('db_status_report')) {
    $requirements += db_status_report($phase);
  }

  // Test settings.php file writability
  if ($phase == 'runtime') {
    if (!drupal_verify_install_file(conf_path() . '/settings.php', FILE_EXIST | FILE_READABLE | FILE_NOT_WRITABLE)) {
      $requirements['settings.php'] = array(
        'value' => $t('Not protected'),
        'severity' => REQUIREMENT_ERROR,
        'description' => $t('The file %file is not protected from modifications and poses a security risk. You must change the file\'s permissions to be non-writable.', array(
          '%file' => conf_path() . '/settings.php',
        )),
      );
    }
    else {
      $requirements['settings.php'] = array(
        'value' => $t('Protected'),
      );
    }
    $requirements['settings.php']['title'] = $t('Configuration file');
  }

  // Report cron status
  if ($phase == 'runtime') {
    $cron_last = variable_get('cron_last', NULL);
    if (is_numeric($cron_last)) {
      $requirements['cron']['value'] = $t('Last run !time ago', array(
        '!time' => format_interval(time() - $cron_last),
      ));
    }
    else {
      $requirements['cron'] = array(
        'description' => $t('Cron has not run. It appears cron jobs have not been setup on your system. Please check the help pages for <a href="@url">configuring cron jobs</a>.', array(
          '@url' => 'http://drupal.org/cron',
        )),
        'severity' => REQUIREMENT_ERROR,
        'value' => $t('Never run'),
      );
    }
    $requirements['cron']['description'] .= ' ' . t('You can <a href="@cron">run cron manually</a>.', array(
      '@cron' => url('admin/logs/status/run-cron'),
    ));
    $requirements['cron']['title'] = $t('Cron maintenance tasks');
  }

  // Test files directory
  if ($phase == 'runtime') {
    $directory = file_directory_path();
    $is_writable = is_writable($directory);
    $is_directory = is_dir($directory);
    if (!$is_writable || !$is_directory) {
      if (!$is_directory) {
        $error = $t('The directory %directory does not exist.', array(
          '%directory' => $directory,
        ));
      }
      else {
        $error = $t('The directory %directory is not writable.', array(
          '%directory' => $directory,
        ));
      }
      $requirements['file system'] = array(
        'value' => $t('Not writable'),
        'severity' => REQUIREMENT_ERROR,
        'description' => $error . ' ' . $t('You may need to set the correct directory at the <a href="@admin-file-system">file system settings page</a> or change the current directory\'s permissions so that it is writable.', array(
          '@admin-file-system' => url('admin/settings/file-system'),
        )),
      );
    }
    else {
      if (variable_get('file_downloads', FILE_DOWNLOADS_PUBLIC) == FILE_DOWNLOADS_PUBLIC) {
        $requirements['file system'] = array(
          'value' => $t('Writable (<em>public</em> download method)'),
        );
      }
      else {
        $requirements['file system'] = array(
          'value' => $t('Writable (<em>private</em> download method)'),
        );
      }
    }
    $requirements['file system']['title'] = $t('File system');
  }

  // See if updates are available in update.php.
  if ($phase == 'runtime') {
    $requirements['update'] = array(
      'title' => $t('Database schema'),
      'severity' => REQUIREMENT_OK,
      'value' => $t('Up to date'),
    );

    // Check installed modules.
    foreach (module_list() as $module) {
      $updates = drupal_get_schema_versions($module);
      if ($updates !== FALSE) {
        $default = drupal_get_installed_schema_version($module);
        if (max($updates) > $default) {
          $requirements['update']['severity'] = REQUIREMENT_ERROR;
          $requirements['update']['value'] = $t('Out of date');
          $requirements['update']['description'] = $t('Some modules have database schema updates to install. You should run the <a href="@update">database update script</a> immediately.', array(
            '@update' => base_path() . 'update.php',
          ));
          break;
        }
      }
    }
  }

  // Test Unicode library
  include_once './includes/unicode.inc';
  $requirements = array_merge($requirements, unicode_requirements());
  return $requirements;
}

/**
 * Implementation of hook_install().
 */
function system_install() {
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      db_query("CREATE TABLE {access} (\n        aid int NOT NULL auto_increment,\n        mask varchar(255) NOT NULL default '',\n        type varchar(255) NOT NULL default '',\n        status tinyint NOT NULL default '0',\n        PRIMARY KEY (aid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {authmap} (\n        aid int unsigned NOT NULL auto_increment,\n        uid int NOT NULL default '0',\n        authname varchar(128) NOT NULL default '',\n        module varchar(128) NOT NULL default '',\n        PRIMARY KEY (aid),\n        UNIQUE KEY authname (authname)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {blocks} (\n        module varchar(64) DEFAULT '' NOT NULL,\n        delta varchar(32) NOT NULL default '0',\n        theme varchar(255) NOT NULL default '',\n        status tinyint DEFAULT '0' NOT NULL,\n        weight tinyint DEFAULT '0' NOT NULL,\n        region varchar(64) DEFAULT 'left' NOT NULL,\n        custom tinyint DEFAULT '0' NOT NULL,\n        throttle tinyint DEFAULT '0' NOT NULL,\n        visibility tinyint DEFAULT '0' NOT NULL,\n        pages text NOT NULL,\n        title varchar(64) DEFAULT '' NOT NULL\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {boxes} (\n        bid int NOT NULL auto_increment,\n        body longtext,\n        info varchar(128) NOT NULL default '',\n        format int NOT NULL default '0',\n        PRIMARY KEY (bid),\n        UNIQUE KEY info (info)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {cache} (\n        cid varchar(255) NOT NULL default '',\n        data longblob,\n        expire int NOT NULL default '0',\n        created int NOT NULL default '0',\n        headers text,\n        PRIMARY KEY (cid),\n        INDEX expire (expire)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {cache_filter} (\n        cid varchar(255) NOT NULL default '',\n        data longblob,\n        expire int NOT NULL default '0',\n        created int NOT NULL default '0',\n        headers text,\n        PRIMARY KEY (cid),\n        INDEX expire (expire)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {cache_menu} (\n        cid varchar(255) NOT NULL default '',\n        data longblob,\n        expire int NOT NULL default '0',\n        created int NOT NULL default '0',\n        headers text,\n        PRIMARY KEY (cid),\n        INDEX expire (expire)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {cache_page} (\n        cid varchar(255) BINARY NOT NULL default '',\n        data longblob,\n        expire int NOT NULL default '0',\n        created int NOT NULL default '0',\n        headers text,\n        PRIMARY KEY (cid),\n        INDEX expire (expire)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {comments} (\n        cid int NOT NULL auto_increment,\n        pid int NOT NULL default '0',\n        nid int NOT NULL default '0',\n        uid int NOT NULL default '0',\n        subject varchar(64) NOT NULL default '',\n        comment longtext NOT NULL,\n        hostname varchar(128) NOT NULL default '',\n        timestamp int NOT NULL default '0',\n        score mediumint NOT NULL default '0',\n        status tinyint unsigned NOT NULL default '0',\n        format int NOT NULL default '0',\n        thread varchar(255) NOT NULL,\n        users longtext,\n        name varchar(60) default NULL,\n        mail varchar(64) default NULL,\n        homepage varchar(255) default NULL,\n        PRIMARY KEY (cid),\n        KEY lid (nid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {node_comment_statistics} (\n        nid int unsigned NOT NULL auto_increment,\n        last_comment_timestamp int NOT NULL default '0',\n        last_comment_name varchar(60) default NULL,\n        last_comment_uid int NOT NULL default '0',\n        comment_count int unsigned NOT NULL default '0',\n        PRIMARY KEY (nid),\n        KEY node_comment_timestamp (last_comment_timestamp)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {files} (\n        fid int unsigned NOT NULL default 0,\n        nid int unsigned NOT NULL default 0,\n        filename varchar(255) NOT NULL default '',\n        filepath varchar(255) NOT NULL default '',\n        filemime varchar(255) NOT NULL default '',\n        filesize int unsigned NOT NULL default 0,\n        PRIMARY KEY (fid),\n        KEY nid (nid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {file_revisions} (\n        fid int unsigned NOT NULL default 0,\n        vid int unsigned NOT NULL default 0,\n        description varchar(255) NOT NULL default '',\n        list tinyint unsigned NOT NULL default 0,\n        PRIMARY KEY (fid, vid),\n        KEY (vid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {filter_formats} (\n        format int NOT NULL auto_increment,\n        name varchar(255) NOT NULL default '',\n        roles varchar(255) NOT NULL default '',\n        cache tinyint NOT NULL default '0',\n        PRIMARY KEY (format),\n        UNIQUE KEY (name)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {filters} (\n        format int NOT NULL default '0',\n        module varchar(64) NOT NULL default '',\n        delta tinyint DEFAULT '0' NOT NULL,\n        weight tinyint DEFAULT '0' NOT NULL,\n        INDEX (weight)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {flood} (\n        event varchar(64) NOT NULL default '',\n        hostname varchar(128) NOT NULL default '',\n        timestamp int NOT NULL default '0'\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {history} (\n        uid int NOT NULL default '0',\n        nid int NOT NULL default '0',\n        timestamp int NOT NULL default '0',\n        PRIMARY KEY (uid,nid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {menu} (\n        mid int unsigned NOT NULL default '0',\n        pid int unsigned NOT NULL default '0',\n        path varchar(255) NOT NULL default '',\n        title varchar(255) NOT NULL default '',\n        description varchar(255) NOT NULL default '',\n        weight tinyint NOT NULL default '0',\n        type int unsigned NOT NULL default '0',\n        PRIMARY KEY (mid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {node} (\n        nid int unsigned NOT NULL auto_increment,\n        vid int unsigned NOT NULL default '0',\n        type varchar(32) NOT NULL default '',\n        title varchar(128) NOT NULL default '',\n        uid int NOT NULL default '0',\n        status int NOT NULL default '1',\n        created int NOT NULL default '0',\n        changed int NOT NULL default '0',\n        comment int NOT NULL default '0',\n        promote int NOT NULL default '0',\n        moderate int NOT NULL default '0',\n        sticky int NOT NULL default '0',\n        PRIMARY KEY  (nid, vid),\n        UNIQUE KEY vid (vid),\n        KEY node_type (type(4)),\n        KEY node_title_type (title, type(4)),\n        KEY status (status),\n        KEY uid (uid),\n        KEY node_moderate (moderate),\n        KEY node_promote_status (promote, status),\n        KEY node_created (created),\n        KEY node_changed (changed),\n        KEY node_status_type (status, type, nid),\n        KEY nid (nid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {node_access} (\n        nid int unsigned NOT NULL default '0',\n        gid int unsigned NOT NULL default '0',\n        realm varchar(255) NOT NULL default '',\n        grant_view tinyint unsigned NOT NULL default '0',\n        grant_update tinyint unsigned NOT NULL default '0',\n        grant_delete tinyint unsigned NOT NULL default '0',\n        PRIMARY KEY (nid,gid,realm)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {node_revisions} (\n        nid int unsigned NOT NULL,\n        vid int unsigned NOT NULL,\n        uid int NOT NULL default '0',\n        title varchar(128) NOT NULL default '',\n        body longtext NOT NULL,\n        teaser longtext NOT NULL,\n        log longtext NOT NULL,\n        timestamp int NOT NULL default '0',\n        format int NOT NULL default '0',\n        PRIMARY KEY  (vid),\n        KEY nid (nid),\n        KEY uid (uid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {node_type} (\n        type varchar(32) NOT NULL,\n        name varchar(255) NOT NULL default '',\n        module varchar(255) NOT NULL,\n        description mediumtext NOT NULL,\n        help mediumtext NOT NULL,\n        has_title tinyint unsigned NOT NULL,\n        title_label varchar(255) NOT NULL default '',\n        has_body tinyint unsigned NOT NULL,\n        body_label varchar(255) NOT NULL default '',\n        min_word_count smallint unsigned NOT NULL,\n        custom tinyint NOT NULL DEFAULT '0',\n        modified tinyint NOT NULL DEFAULT '0',\n        locked tinyint NOT NULL DEFAULT '0',\n        orig_type varchar(255) NOT NULL default '',\n        PRIMARY KEY (type)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {url_alias} (\n        pid int unsigned NOT NULL auto_increment,\n        src varchar(128) NOT NULL default '',\n        dst varchar(128) NOT NULL default '',\n        PRIMARY KEY (pid),\n        UNIQUE KEY dst (dst),\n        KEY src (src)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {permission} (\n        rid int unsigned NOT NULL default '0',\n        perm longtext,\n        tid int unsigned NOT NULL default '0',\n        KEY rid (rid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {role} (\n        rid int unsigned NOT NULL auto_increment,\n        name varchar(64) NOT NULL default '',\n        PRIMARY KEY (rid),\n        UNIQUE KEY name (name)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {blocks_roles} (\n        module varchar(64) NOT NULL,\n        delta varchar(32) NOT NULL,\n        rid int unsigned NOT NULL,\n        PRIMARY KEY (module, delta, rid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {sessions} (\n        uid int unsigned NOT NULL,\n        sid varchar(64) NOT NULL default '',\n        hostname varchar(128) NOT NULL default '',\n        timestamp int NOT NULL default '0',\n        cache int NOT NULL default '0',\n        session longtext,\n        KEY uid (uid),\n        PRIMARY KEY (sid),\n        KEY timestamp (timestamp)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {sequences} (\n        name varchar(255) NOT NULL default '',\n        id int unsigned NOT NULL default '0',\n        PRIMARY KEY (name)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {node_counter} (\n        nid int NOT NULL default '0',\n        totalcount bigint unsigned NOT NULL default '0',\n        daycount mediumint unsigned NOT NULL default '0',\n        timestamp int unsigned NOT NULL default '0',\n        PRIMARY KEY (nid),\n        KEY totalcount (totalcount),\n        KEY daycount (daycount),\n        KEY timestamp (timestamp)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {system} (\n        filename varchar(255) NOT NULL default '',\n        name varchar(255) NOT NULL default '',\n        type varchar(255) NOT NULL default '',\n        description varchar(255) NOT NULL default '',\n        status int NOT NULL default '0',\n        throttle tinyint DEFAULT '0' NOT NULL,\n        bootstrap int NOT NULL default '0',\n        schema_version smallint NOT NULL default -1,\n        weight int NOT NULL default '0',\n        PRIMARY KEY (filename),\n        KEY (weight)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {term_data} (\n        tid int unsigned NOT NULL auto_increment,\n        vid int unsigned NOT NULL default '0',\n        name varchar(255) NOT NULL default '',\n        description longtext,\n        weight tinyint NOT NULL default '0',\n        PRIMARY KEY (tid),\n        KEY vid (vid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {term_hierarchy} (\n        tid int unsigned NOT NULL default '0',\n        parent int unsigned NOT NULL default '0',\n        KEY tid (tid),\n        KEY parent (parent),\n        PRIMARY KEY (tid, parent)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {term_node} (\n        nid int unsigned NOT NULL default '0',\n        tid int unsigned NOT NULL default '0',\n        KEY nid (nid),\n        KEY tid (tid),\n        PRIMARY KEY (tid,nid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {term_relation} (\n        tid1 int unsigned NOT NULL default '0',\n        tid2 int unsigned NOT NULL default '0',\n        KEY tid1 (tid1),\n        KEY tid2 (tid2)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {term_synonym} (\n        tid int unsigned NOT NULL default '0',\n        name varchar(255) NOT NULL default '',\n        KEY tid (tid),\n        KEY name (name(3))\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {users} (\n        uid int unsigned NOT NULL default '0',\n        name varchar(60) NOT NULL default '',\n        pass varchar(32) NOT NULL default '',\n        mail varchar(64) default '',\n        mode tinyint NOT NULL default '0',\n        sort tinyint default '0',\n        threshold tinyint default '0',\n        theme varchar(255) NOT NULL default '',\n        signature varchar(255) NOT NULL default '',\n        created int NOT NULL default '0',\n        access int NOT NULL default '0',\n        login int NOT NULL default '0',\n        status tinyint NOT NULL default '0',\n        timezone varchar(8) default NULL,\n        language varchar(12) NOT NULL default '',\n        picture varchar(255) NOT NULL DEFAULT '',\n        init varchar(64) default '',\n        data longtext,\n        PRIMARY KEY (uid),\n        UNIQUE KEY name (name),\n        KEY created (created),\n        KEY access (access)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {users_roles} (\n        uid int unsigned NOT NULL default '0',\n        rid int unsigned NOT NULL default '0',\n        PRIMARY KEY (uid, rid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {variable} (\n        name varchar(48) NOT NULL default '',\n        value longtext NOT NULL,\n        PRIMARY KEY (name)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {vocabulary} (\n        vid int unsigned NOT NULL auto_increment,\n        name varchar(255) NOT NULL default '',\n        description longtext,\n        help varchar(255) NOT NULL default '',\n        relations tinyint unsigned NOT NULL default '0',\n        hierarchy tinyint unsigned NOT NULL default '0',\n        multiple tinyint unsigned NOT NULL default '0',\n        required tinyint unsigned NOT NULL default '0',\n        tags tinyint unsigned NOT NULL default '0',\n        module varchar(255) NOT NULL default '',\n        weight tinyint NOT NULL default '0',\n        PRIMARY KEY (vid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {vocabulary_node_types} (\n        vid int unsigned NOT NULL DEFAULT '0',\n        type varchar(32) NOT NULL DEFAULT '',\n        PRIMARY KEY (vid, type)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      db_query("CREATE TABLE {watchdog} (\n        wid int NOT NULL auto_increment,\n        uid int NOT NULL default '0',\n        type varchar(16) NOT NULL default '',\n        message longtext NOT NULL,\n        severity tinyint unsigned NOT NULL default '0',\n        link varchar(255) NOT NULL default '',\n        location text NOT NULL,\n        referer varchar(128) NOT NULL default '',\n        hostname varchar(128) NOT NULL default '',\n        timestamp int NOT NULL default '0',\n        PRIMARY KEY (wid),\n        KEY (type)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      break;
    case 'pgsql':

      /* create unsigned types */
      db_query("CREATE DOMAIN int_unsigned integer CHECK (VALUE >= 0)");
      db_query("CREATE DOMAIN smallint_unsigned smallint CHECK (VALUE >= 0)");
      db_query("CREATE DOMAIN bigint_unsigned bigint CHECK (VALUE >= 0)");

      /* create functions */
      db_query('CREATE OR REPLACE FUNCTION "greatest"(numeric, numeric) RETURNS numeric AS
        \'SELECT CASE WHEN (($1 > $2) OR ($2 IS NULL)) THEN $1 ELSE $2 END;\'
        LANGUAGE \'sql\'');
      db_query('CREATE OR REPLACE FUNCTION "greatest"(numeric, numeric, numeric) RETURNS numeric AS
        \'SELECT greatest($1, greatest($2, $3));\'
        LANGUAGE \'sql\'');
      if (!db_result(db_query("SELECT COUNT(*) FROM pg_proc WHERE proname = 'rand'"))) {
        db_query('CREATE OR REPLACE FUNCTION "rand"() RETURNS float AS
          \'SELECT random();\'
          LANGUAGE \'sql\'');
      }
      if (!db_result(db_query("SELECT COUNT(*) FROM pg_proc WHERE proname = 'concat'"))) {
        db_query('CREATE OR REPLACE FUNCTION "concat"(text, text) RETURNS text AS
          \'SELECT $1 || $2;\'
          LANGUAGE \'sql\'');
      }
      db_query('CREATE OR REPLACE FUNCTION "if"(boolean, text, text) RETURNS text AS
        \'SELECT CASE WHEN $1 THEN $2 ELSE $3 END;\'
        LANGUAGE \'sql\'');
      db_query('CREATE OR REPLACE FUNCTION "if"(boolean, integer, integer) RETURNS integer AS
        \'SELECT CASE WHEN $1 THEN $2 ELSE $3 END;\'
        LANGUAGE \'sql\'');

      /* create tables */
      db_query("CREATE TABLE {access} (\n        aid serial,\n        mask varchar(255) NOT NULL default '',\n        type varchar(255) NOT NULL default '',\n        status smallint NOT NULL default '0',\n        PRIMARY KEY (aid)\n      )");
      db_query("CREATE TABLE {authmap} (\n        aid serial CHECK (aid >= 0),\n        uid int NOT NULL default '0',\n        authname varchar(128) NOT NULL default '',\n        module varchar(128) NOT NULL default '',\n        PRIMARY KEY (aid),\n        UNIQUE (authname)\n      )");
      db_query("CREATE TABLE {blocks} (\n        module varchar(64) DEFAULT '' NOT NULL,\n        delta varchar(32) NOT NULL default '0',\n        theme varchar(255) NOT NULL default '',\n        status smallint DEFAULT '0' NOT NULL,\n        weight smallint DEFAULT '0' NOT NULL,\n        region varchar(64) DEFAULT 'left' NOT NULL,\n        custom smallint DEFAULT '0' NOT NULL,\n        throttle smallint DEFAULT '0' NOT NULL,\n        visibility smallint DEFAULT '0' NOT NULL,\n        pages text DEFAULT '' NOT NULL,\n        title varchar(64) DEFAULT '' NOT NULL\n      )");
      db_query("CREATE TABLE {boxes} (\n        bid serial,\n        body text,\n        info varchar(128) NOT NULL default '',\n        format smallint NOT NULL default '0',\n        PRIMARY KEY (bid),\n        UNIQUE (info)\n      )");
      db_query("CREATE TABLE {cache} (\n        cid varchar(255) NOT NULL default '',\n        data bytea,\n        expire int NOT NULL default '0',\n        created int NOT NULL default '0',\n        headers text,\n        PRIMARY KEY (cid)\n      )");
      db_query("CREATE TABLE {cache_filter} (\n        cid varchar(255) NOT NULL default '',\n        data bytea,\n        expire int NOT NULL default '0',\n        created int NOT NULL default '0',\n        headers text,\n        PRIMARY KEY (cid)\n      )");
      db_query("CREATE TABLE {cache_menu} (\n        cid varchar(255) NOT NULL default '',\n        data bytea,\n        expire int NOT NULL default '0',\n        created int NOT NULL default '0',\n        headers text,\n        PRIMARY KEY (cid)\n      )");
      db_query("CREATE TABLE {cache_page} (\n        cid varchar(255) NOT NULL default '',\n        data bytea,\n        expire int NOT NULL default '0',\n        created int NOT NULL default '0',\n        headers text,\n        PRIMARY KEY (cid)\n      )");
      db_query("CREATE INDEX {cache}_expire_idx ON {cache} (expire)");
      db_query("CREATE INDEX {cache_filter}_expire_idx ON {cache_filter} (expire)");
      db_query("CREATE INDEX {cache_menu}_expire_idx ON {cache_menu} (expire)");
      db_query("CREATE INDEX {cache_page}_expire_idx ON {cache_page} (expire)");
      db_query("CREATE TABLE {comments} (\n        cid serial,\n        pid int NOT NULL default '0',\n        nid int NOT NULL default '0',\n        uid int NOT NULL default '0',\n        subject varchar(64) NOT NULL default '',\n        comment text NOT NULL,\n        hostname varchar(128) NOT NULL default '',\n        timestamp int NOT NULL default '0',\n        score int NOT NULL default '0',\n        status smallint_unsigned NOT NULL default '0',\n        format smallint NOT NULL default '0',\n        thread varchar(255) NOT NULL,\n        users text,\n        name varchar(60) default NULL,\n        mail varchar(64) default NULL,\n        homepage varchar(255) default NULL,\n        PRIMARY KEY (cid)\n      )");
      db_query("CREATE INDEX {comments}_nid_idx ON {comments} (nid)");
      db_query("CREATE TABLE {node_comment_statistics} (\n        nid serial CHECK (nid >= 0),\n        last_comment_timestamp int NOT NULL default '0',\n        last_comment_name varchar(60) default NULL,\n        last_comment_uid int NOT NULL default '0',\n        comment_count int_unsigned NOT NULL default '0',\n        PRIMARY KEY (nid)\n      )");
      db_query("CREATE INDEX {node_comment_statistics}_node_comment_timestamp_idx ON {node_comment_statistics} (last_comment_timestamp)");
      db_query("CREATE TABLE {files} (\n        fid serial CHECK (fid >= 0),\n        nid int_unsigned NOT NULL default 0,\n        filename varchar(255) NOT NULL default '',\n        filepath varchar(255) NOT NULL default '',\n        filemime varchar(255) NOT NULL default '',\n        filesize int_unsigned NOT NULL default 0,\n        PRIMARY KEY (fid)\n      )");
      db_query("CREATE INDEX {files}_nid_idx ON {files} (nid)");
      db_query("CREATE TABLE {file_revisions} (\n        fid int_unsigned NOT NULL default 0,\n        vid int_unsigned NOT NULL default 0,\n        description varchar(255) NOT NULL default '',\n        list smallint_unsigned NOT NULL default 0,\n        PRIMARY KEY (fid, vid)\n      )");
      db_query("CREATE INDEX {file_revisions}_vid_idx ON {file_revisions} (vid)");
      db_query("CREATE TABLE {filter_formats} (\n        format serial,\n        name varchar(255) NOT NULL default '',\n        roles varchar(255) NOT NULL default '',\n        cache smallint NOT NULL default '0',\n        PRIMARY KEY (format),\n        UNIQUE (name)\n      )");
      db_query("CREATE TABLE {filters} (\n        format int NOT NULL default '0',\n        module varchar(64) NOT NULL default '',\n        delta smallint DEFAULT '0' NOT NULL,\n        weight smallint DEFAULT '0' NOT NULL\n      )");
      db_query("CREATE INDEX {filters}_weight_idx ON {filters} (weight)");
      db_query("CREATE TABLE {flood} (\n        event varchar(64) NOT NULL default '',\n        hostname varchar(128) NOT NULL default '',\n        timestamp int NOT NULL default '0'\n      )");
      db_query("CREATE TABLE {history} (\n        uid int NOT NULL default '0',\n        nid int NOT NULL default '0',\n        timestamp int NOT NULL default '0',\n        PRIMARY KEY (uid,nid)\n      )");
      db_query("CREATE TABLE {menu} (\n        mid serial CHECK (mid >= 0),\n        pid int_unsigned NOT NULL default '0',\n        path varchar(255) NOT NULL default '',\n        title varchar(255) NOT NULL default '',\n        description varchar(255) NOT NULL default '',\n        weight smallint NOT NULL default '0',\n        type int_unsigned NOT NULL default '0',\n        PRIMARY KEY (mid)\n      )");
      db_query("ALTER SEQUENCE {menu}_mid_seq MINVALUE 2 RESTART 2");
      db_query("CREATE TABLE {node} (\n        nid serial CHECK (nid >= 0),\n        vid int_unsigned NOT NULL default '0',\n        type varchar(32) NOT NULL default '',\n        title varchar(128) NOT NULL default '',\n        uid int NOT NULL default '0',\n        status int NOT NULL default '1',\n        created int NOT NULL default '0',\n        changed int NOT NULL default '0',\n        comment int NOT NULL default '0',\n        promote int NOT NULL default '0',\n        moderate int NOT NULL default '0',\n        sticky int NOT NULL default '0',\n        PRIMARY KEY (nid, vid),\n        UNIQUE (vid)\n      )");
      db_query("CREATE INDEX {node}_node_type_idx ON {node} (substr (type, 1, 4))");
      db_query("CREATE INDEX {node}_node_title_type_idx ON {node} (title, substr(type, 1, 4))");
      db_query("CREATE INDEX {node}_status_idx ON {node} (status)");
      db_query("CREATE INDEX {node}_uid_idx ON {node} (uid)");
      db_query("CREATE INDEX {node}_node_moderate_idx ON {node} (moderate)");
      db_query("CREATE INDEX {node}_node_promote_status_idx ON {node} (promote, status)");
      db_query("CREATE INDEX {node}_node_created_idx ON {node} (created)");
      db_query("CREATE INDEX {node}_node_changed_idx ON {node} (changed)");
      db_query("CREATE INDEX {node}_node_status_type_idx ON {node} (status, type, nid)");
      db_query("CREATE INDEX {node}_nid_idx ON {node} (nid)");
      db_query("CREATE TABLE {node_access} (\n        nid int_unsigned NOT NULL default '0',\n        gid int_unsigned NOT NULL default '0',\n        realm varchar(255) NOT NULL default '',\n        grant_view smallint_unsigned NOT NULL default '0',\n        grant_update smallint_unsigned NOT NULL default '0',\n        grant_delete smallint_unsigned NOT NULL default '0',\n        PRIMARY KEY (nid,gid,realm)\n      )");
      db_query("CREATE TABLE {node_revisions} (\n        nid int_unsigned NOT NULL,\n        vid serial CHECK (vid >= 0),\n        uid int NOT NULL default '0',\n        title varchar(128) NOT NULL default '',\n        body text NOT NULL default '',\n        teaser text NOT NULL default '',\n        log text NOT NULL default '',\n        timestamp int NOT NULL default '0',\n        format int NOT NULL default '0',\n        PRIMARY KEY (vid)\n      )");
      db_query("CREATE INDEX {node_revisions}_nid_idx ON {node_revisions} (nid)");
      db_query("CREATE INDEX {node_revisions}_uid_idx ON {node_revisions} (uid)");
      db_query("CREATE TABLE {node_type} (\n        type varchar(32) NOT NULL,\n        name varchar(255) NOT NULL default '',\n        module varchar(255) NOT NULL,\n        description text NOT NULL,\n        help text NOT NULL,\n        has_title smallint_unsigned NOT NULL,\n        title_label varchar(255) NOT NULL default '',\n        has_body smallint_unsigned NOT NULL,\n        body_label varchar(255) NOT NULL default '',\n        min_word_count smallint_unsigned NOT NULL,\n        custom smallint NOT NULL DEFAULT '0',\n        modified smallint NOT NULL DEFAULT '0',\n        locked smallint NOT NULL DEFAULT '0',\n        orig_type varchar(255) NOT NULL default '',\n        PRIMARY KEY (type)\n      )");
      db_query("CREATE TABLE {url_alias} (\n        pid serial CHECK (pid >= 0),\n        src varchar(128) NOT NULL default '',\n        dst varchar(128) NOT NULL default '',\n        PRIMARY KEY (pid),\n        UNIQUE (dst)\n      )");
      db_query("CREATE INDEX {url_alias}_src_idx ON {url_alias} (src)");
      db_query("CREATE TABLE {permission} (\n        rid int_unsigned NOT NULL default '0',\n        perm text,\n        tid int_unsigned NOT NULL default '0'\n      )");
      db_query("CREATE INDEX {permission}_rid_idx ON {permission} (rid)");
      db_query("CREATE TABLE {role} (\n        rid serial CHECK (rid >= 0),\n        name varchar(64) NOT NULL default '',\n        PRIMARY KEY (rid),\n        UNIQUE (name)\n      )");
      db_query("SELECT setval('{role}_rid_seq'," . max(DRUPAL_ANONYMOUS_RID, DRUPAL_AUTHENTICATED_RID) . ")");
      db_query("CREATE TABLE {blocks_roles} (\n        module varchar(64) NOT NULL,\n        delta varchar(32) NOT NULL,\n        rid int_unsigned NOT NULL,\n        PRIMARY KEY (module, delta, rid)\n      )");
      db_query("CREATE TABLE {sessions} (\n        uid int_unsigned NOT NULL,\n        sid varchar(64) NOT NULL default '',\n        hostname varchar(128) NOT NULL default '',\n        timestamp int NOT NULL default '0',\n        cache int NOT NULL default '0',\n        session text,\n        PRIMARY KEY (sid)\n      )");
      db_query("CREATE INDEX {sessions}_uid_idx ON {sessions} (uid)");
      db_query("CREATE INDEX {sessions}_timestamp_idx ON {sessions} (timestamp)");

      /* Only used for MySQL
         db_query("CREATE TABLE {sequences} (
           name varchar(255) NOT NULL default '',
           id int_unsigned NOT NULL default '0',
           PRIMARY KEY (name)
         )"); */
      db_query("CREATE TABLE {node_counter} (\n        nid int NOT NULL default '0',\n        totalcount bigint_unsigned NOT NULL default '0',\n        daycount int_unsigned NOT NULL default '0',\n        timestamp int_unsigned NOT NULL default '0',\n        PRIMARY KEY (nid)\n      )");
      db_query("CREATE INDEX {node_counter}_totalcount_idx ON {node_counter} (totalcount)");
      db_query("CREATE INDEX {node_counter}_daycount_idx ON {node_counter} (daycount)");
      db_query("CREATE INDEX {node_counter}_timestamp_idx ON {node_counter} (timestamp)");
      db_query("CREATE TABLE {system} (\n        filename varchar(255) NOT NULL default '',\n        name varchar(255) NOT NULL default '',\n        type varchar(255) NOT NULL default '',\n        description varchar(255) NOT NULL default '',\n        status int NOT NULL default '0',\n        throttle smallint DEFAULT '0' NOT NULL,\n        bootstrap int NOT NULL default '0',\n        schema_version smallint NOT NULL default -1,\n        weight int NOT NULL default '0',\n        PRIMARY KEY (filename)\n      )");
      db_query("CREATE INDEX {system}_weight_idx ON {system} (weight)");
      db_query("CREATE TABLE {term_data} (\n        tid serial CHECK (tid >= 0),\n        vid int_unsigned NOT NULL default '0',\n        name varchar(255) NOT NULL default '',\n        description text,\n        weight smallint NOT NULL default '0',\n        PRIMARY KEY (tid)\n      )");
      db_query("CREATE INDEX {term_data}_vid_idx ON {term_data} (vid)");
      db_query("CREATE TABLE {term_hierarchy} (\n        tid int_unsigned NOT NULL default '0',\n        parent int_unsigned NOT NULL default '0',\n        PRIMARY KEY (tid, parent)\n      )");
      db_query("CREATE INDEX {term_hierarchy}_tid_idx ON {term_hierarchy} (tid)");
      db_query("CREATE INDEX {term_hierarchy}_parent_idx ON {term_hierarchy} (parent)");
      db_query("CREATE TABLE {term_node} (\n        nid int_unsigned NOT NULL default '0',\n        tid int_unsigned NOT NULL default '0',\n        PRIMARY KEY (tid,nid)\n      )");
      db_query("CREATE INDEX {term_node}_nid_idx ON {term_node} (nid)");
      db_query("CREATE INDEX {term_node}_tid_idx ON {term_node} (tid)");
      db_query("CREATE TABLE {term_relation} (\n        tid1 int_unsigned NOT NULL default '0',\n        tid2 int_unsigned NOT NULL default '0'\n      )");
      db_query("CREATE INDEX {term_relation}_tid1_idx ON {term_relation} (tid1)");
      db_query("CREATE INDEX {term_relation}_tid2_idx ON {term_relation} (tid2)");
      db_query("CREATE TABLE {term_synonym} (\n        tid int_unsigned NOT NULL default '0',\n        name varchar(255) NOT NULL default ''\n      )");
      db_query("CREATE INDEX {term_synonym}_tid_idx ON {term_synonym} (tid)");
      db_query("CREATE INDEX {term_synonym}_name_idx ON {term_synonym} (substr(name, 1, 3))");
      db_query("CREATE TABLE {users} (\n        uid serial CHECK (uid >= 0),\n        name varchar(60) NOT NULL default '',\n        pass varchar(32) NOT NULL default '',\n        mail varchar(64) default '',\n        mode smallint NOT NULL default '0',\n        sort smallint default '0',\n        threshold smallint default '0',\n        theme varchar(255) NOT NULL default '',\n        signature varchar(255) NOT NULL default '',\n        created int NOT NULL default '0',\n        access int NOT NULL default '0',\n        login int NOT NULL default '0',\n        status smallint NOT NULL default '0',\n        timezone varchar(8) default NULL,\n        language varchar(12) NOT NULL default '',\n        picture varchar(255) NOT NULL DEFAULT '',\n        init varchar(64) default '',\n        data text,\n        PRIMARY KEY (uid),\n        UNIQUE (name)\n      )");
      db_query("CREATE INDEX {users}_access_idx ON {users} (access)");
      db_query("CREATE INDEX {users}_created_idx ON {users} (created)");
      db_query("CREATE TABLE {users_roles} (\n        uid int_unsigned NOT NULL default '0',\n        rid int_unsigned NOT NULL default '0',\n        PRIMARY KEY (uid, rid)\n      )");
      db_query("CREATE TABLE {variable} (\n        name varchar(48) NOT NULL default '',\n        value text NOT NULL,\n        PRIMARY KEY (name)\n      )");
      db_query("CREATE TABLE {vocabulary} (\n        vid serial CHECK (vid >= 0),\n        name varchar(255) NOT NULL default '',\n        description text,\n        help varchar(255) NOT NULL default '',\n        relations smallint_unsigned NOT NULL default '0',\n        hierarchy smallint_unsigned NOT NULL default '0',\n        multiple smallint_unsigned NOT NULL default '0',\n        required smallint_unsigned NOT NULL default '0',\n        tags smallint_unsigned NOT NULL default '0',\n        module varchar(255) NOT NULL default '',\n        weight smallint NOT NULL default '0',\n        PRIMARY KEY (vid)\n      )");
      db_query("CREATE TABLE {vocabulary_node_types} (\n        vid int_unsigned NOT NULL DEFAULT '0',\n        type varchar(32) NOT NULL DEFAULT '',\n        PRIMARY KEY (vid, type)\n      )");
      db_query("CREATE TABLE {watchdog} (\n        wid serial,\n        uid int NOT NULL default '0',\n        type varchar(16) NOT NULL default '',\n        message text NOT NULL,\n        severity smallint_unsigned NOT NULL default '0',\n        link varchar(255) NOT NULL default '',\n        location text NOT NULL default '',\n        referer varchar(128) NOT NULL default '',\n        hostname varchar(128) NOT NULL default '',\n        timestamp int NOT NULL default '0',\n        PRIMARY KEY (wid)\n      )");
      db_query("CREATE INDEX {watchdog}_type_idx ON {watchdog} (type)");
      break;
  }
  db_query("INSERT INTO {system} (filename, name, type, description, status, throttle, bootstrap, schema_version) VALUES ('themes/engines/phptemplate/phptemplate.engine', 'phptemplate', 'theme_engine', '', 1, 0, 0, 0)");
  db_query("INSERT INTO {system} (filename, name, type, description, status, throttle, bootstrap, schema_version) VALUES ('themes/garland/page.tpl.php', 'garland', 'theme', 'themes/engines/phptemplate/phptemplate.engine', 1, 0, 0, 0)");
  db_query("INSERT INTO {users} (uid,name,mail) VALUES(0,'','')");
  db_query("INSERT INTO {role} (rid, name) VALUES (" . DRUPAL_ANONYMOUS_RID . ", 'anonymous user')");
  db_query("INSERT INTO {role} (rid, name) VALUES (" . DRUPAL_AUTHENTICATED_RID . ", 'authenticated user')");
  db_query("INSERT INTO {permission} VALUES (1,'access content',0)");
  db_query("INSERT INTO {permission} VALUES (2,'access comments, access content, post comments, post comments without approval',0)");
  db_query("INSERT INTO {variable} (name,value) VALUES('theme_default', 's:7:\"garland\";')");
  db_query("INSERT INTO {blocks} (module,delta,theme,status,pages) VALUES('user', 0, 'garland', 1, '')");
  db_query("INSERT INTO {blocks} (module,delta,theme,status,pages) VALUES('user', 1, 'garland', 1, '')");
  db_query("INSERT INTO {node_access} VALUES (0, 0, 'all', 1, 0, 0)");
  db_query("INSERT INTO {filter_formats} (name, roles, cache) VALUES ('Filtered HTML',',1,2,',1)");
  db_query("INSERT INTO {filter_formats} (name, roles, cache) VALUES ('PHP code','',0)");
  db_query("INSERT INTO {filter_formats} (name, roles, cache) VALUES ('Full HTML','',1)");
  db_query("INSERT INTO {filters} VALUES (1,'filter',3,0)");
  db_query("INSERT INTO {filters} VALUES (1,'filter',0,1)");
  db_query("INSERT INTO {filters} VALUES (1,'filter',2,2)");
  db_query("INSERT INTO {filters} VALUES (2,'filter',1,0)");
  db_query("INSERT INTO {filters} VALUES (3,'filter',3,0)");
  db_query("INSERT INTO {filters} VALUES (3,'filter',2,1)");
  db_query("INSERT INTO {variable} (name,value) VALUES ('filter_html_1','i:1;')");
  db_query("INSERT INTO {variable} (name, value) VALUES ('node_options_forum', '%s')", 'a:1:{i:0;s:6:"status";}');
  db_query("INSERT INTO {menu} (mid, pid, path, title, description, weight, type) VALUES (2, 0, '', 'Primary links', '', 0, 115)");
  db_query("INSERT INTO {variable} VALUES ('menu_primary_menu', 'i:2;')");
  db_query("INSERT INTO {variable} VALUES ('menu_secondary_menu', 'i:2;')");
}

// Updates for core
function system_update_110() {
  $ret = array();

  // TODO: needs PGSQL version
  if ($GLOBALS['db_type'] == 'mysql') {

    /*
     ** Search
     */
    $ret[] = update_sql('DROP TABLE {search_index}');
    $ret[] = update_sql("CREATE TABLE {search_index} (\n      word varchar(50) NOT NULL default '',\n      sid int unsigned NOT NULL default '0',\n      type varchar(16) default NULL,\n      fromsid int unsigned NOT NULL default '0',\n      fromtype varchar(16) default NULL,\n      score int unsigned default NULL,\n      KEY sid (sid),\n      KEY fromsid (fromsid),\n      KEY word (word)\n      )");
    $ret[] = update_sql("CREATE TABLE {search_total} (\n      word varchar(50) NOT NULL default '',\n      count int unsigned default NULL,\n      PRIMARY KEY word (word)\n      )");

    /*
     ** Blocks
     */
    $ret[] = update_sql('ALTER TABLE {blocks} DROP path');
    $ret[] = update_sql('ALTER TABLE {blocks} ADD visibility tinyint NOT NULL');
    $ret[] = update_sql('ALTER TABLE {blocks} ADD pages text NOT NULL');
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {

    /*
     ** Search
     */
    $ret[] = update_sql('DROP TABLE {search_index}');
    $ret[] = update_sql("CREATE TABLE {search_index} (\n      word varchar(50) NOT NULL default '',\n      sid integer NOT NULL default '0',\n      type varchar(16) default NULL,\n      fromsid integer NOT NULL default '0',\n      fromtype varchar(16) default NULL,\n      score integer default NULL\n      )");
    $ret[] = update_sql("CREATE INDEX {search_index}_sid_idx on {search_index}(sid)");
    $ret[] = update_sql("CREATE INDEX {search_index}_fromsid_idx on {search_index}(fromsid)");
    $ret[] = update_sql("CREATE INDEX {search_index}_word_idx on {search_index}(word)");
    $ret[] = update_sql("CREATE TABLE {search_total} (\n      word varchar(50) NOT NULL default '' PRIMARY KEY,\n      count integer default NULL\n      )");

    /*
     ** Blocks
     */

    // Postgres can only drop columns since 7.4

    #$ret[] = update_sql('ALTER TABLE {blocks} DROP path');
    $ret[] = update_sql('ALTER TABLE {blocks} ADD visibility smallint');
    $ret[] = update_sql("ALTER TABLE {blocks} ALTER COLUMN visibility set default 0");
    $ret[] = update_sql('UPDATE {blocks} SET visibility = 0');
    $ret[] = update_sql('ALTER TABLE {blocks} ALTER COLUMN visibility SET NOT NULL');
    $ret[] = update_sql('ALTER TABLE {blocks} ADD pages text');
    $ret[] = update_sql("ALTER TABLE {blocks} ALTER COLUMN pages set default ''");
    $ret[] = update_sql("UPDATE {blocks} SET pages = ''");
    $ret[] = update_sql('ALTER TABLE {blocks} ALTER COLUMN pages SET NOT NULL');
  }
  $ret[] = update_sql("DELETE FROM {variable} WHERE name = 'node_cron_last'");
  $ret[] = update_sql('UPDATE {blocks} SET status = 1, custom = 2 WHERE status = 0 AND custom = 1');
  return $ret;
}
function system_update_111() {
  $ret = array();
  $ret[] = update_sql("DELETE FROM {variable} WHERE name LIKE 'throttle_%'");
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql('ALTER TABLE {sessions} ADD PRIMARY KEY sid (sid)');
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {
    $ret[] = update_sql('ALTER TABLE {sessions} ADD UNIQUE(sid)');
  }
  return $ret;
}
function system_update_112() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("CREATE TABLE {flood} (\n      event varchar(64) NOT NULL default '',\n      hostname varchar(128) NOT NULL default '',\n      timestamp int NOT NULL default '0'\n     );");
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {
    $ret[] = update_sql("CREATE TABLE {flood} (\n      event varchar(64) NOT NULL default '',\n      hostname varchar(128) NOT NULL default '',\n      timestamp integer NOT NULL default 0\n     );");
  }
  return $ret;
}
function system_update_113() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql('ALTER TABLE {accesslog} ADD aid int NOT NULL auto_increment, ADD PRIMARY KEY (aid)');
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {
    $ret[] = update_sql("SELECT * INTO TEMPORARY {accesslog}_t FROM {accesslog}");
    $ret[] = update_sql("DROP TABLE {accesslog}");
    $ret[] = update_sql("CREATE TABLE {accesslog} (\n      aid serial,\n      title varchar(255) default NULL,\n      path varchar(255) default NULL,\n      url varchar(255) default NULL,\n      hostname varchar(128) default NULL,\n      uid integer default '0',\n      timestamp integer NOT NULL default '0'\n    )");
    $ret[] = update_sql("INSERT INTO {accesslog} (title, path, url, hostname, uid, timestamp) SELECT title, path, url, hostname, uid, timestamp FROM {accesslog}_t");
    $ret[] = update_sql("DROP TABLE {accesslog}_t");
    $ret[] = update_sql("CREATE INDEX {accesslog}_timestamp_idx ON {accesslog} (timestamp);");
  }

  // Flush the menu cache:
  cache_clear_all('*', 'cache_menu', TRUE);
  return $ret;
}
function system_update_114() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("CREATE TABLE {queue} (\n      nid int unsigned NOT NULL,\n      uid int unsigned NOT NULL,\n      vote int NOT NULL default '0',\n      PRIMARY KEY (nid, uid)\n     )");
  }
  else {
    if ($GLOBALS['db_type'] == 'pgsql') {
      $ret[] = update_sql("CREATE TABLE {queue} (\n      nid integer NOT NULL default '0',\n      uid integer NOT NULL default '0',\n      vote integer NOT NULL default '0',\n      PRIMARY KEY (nid, uid)\n    )");
      $ret[] = update_sql("CREATE INDEX {queue}_nid_idx ON queue(nid)");
      $ret[] = update_sql("CREATE INDEX {queue}_uid_idx ON queue(uid)");
    }
  }
  $result = db_query("SELECT nid, votes, score, users FROM {node}");
  while ($node = db_fetch_object($result)) {
    if (isset($node->users)) {
      $arr = explode(',', $node->users);
      unset($node->users);
      foreach ($arr as $value) {
        $arr2 = explode('=', trim($value));
        if (isset($arr2[0]) && isset($arr2[1])) {
          switch ($arr2[1]) {
            case '+ 1':
              db_query("INSERT INTO {queue} (nid, uid, vote) VALUES (%d, %d, %d)", $node->nid, (int) $arr2[0], 1);
              break;
            case '- 1':
              db_query("INSERT INTO {queue} (nid, uid, vote) VALUES (%d, %d, %d)", $node->nid, (int) $arr2[0], -1);
              break;
            default:
              db_query("INSERT INTO {queue} (nid, uid, vote) VALUES (%d, %d, %d)", $node->nid, (int) $arr2[0], 0);
          }
        }
      }
    }
  }
  if ($GLOBALS['db_type'] == 'mysql') {

    // Postgres only supports dropping of columns since 7.4
    $ret[] = update_sql("ALTER TABLE {node} DROP votes");
    $ret[] = update_sql("ALTER TABLE {node} DROP score");
    $ret[] = update_sql("ALTER TABLE {node} DROP users");
  }
  return $ret;
}
function system_update_115() {
  $ret = array();

  // This update has been moved to update_fix_watchdog_115 in update.php because it
  // is needed for the basic functioning of the update script.
  return $ret;
}
function system_update_116() {
  return array(
    update_sql("DELETE FROM {system} WHERE name = 'admin'"),
  );
}
function system_update_117() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("CREATE TABLE {vocabulary_node_types} (\n                         vid int NOT NULL default '0',\n                         type varchar(16) NOT NULL default '',\n                         PRIMARY KEY (vid, type))");
  }
  else {
    if ($GLOBALS['db_type'] == 'pgsql') {
      $ret[] = update_sql("CREATE TABLE {vocabulary_node_types} (\n                         vid serial,\n                         type varchar(16) NOT NULL default '',\n                          PRIMARY KEY (vid, type)) ");
    }
  }
  return $ret;
}
function system_update_118() {
  $ret = array();
  $node_types = array();
  $result = db_query('SELECT vid, nodes FROM {vocabulary}');
  while ($vocabulary = db_fetch_object($result)) {
    $node_types[$vocabulary->vid] = explode(',', $vocabulary->nodes);
  }
  foreach ($node_types as $vid => $type_array) {
    foreach ($type_array as $type) {
      db_query("INSERT INTO {vocabulary_node_types} (vid, type) VALUES (%d, '%s')", $vid, $type);
    }
  }
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("ALTER TABLE {vocabulary} DROP nodes");
  }
  return $ret;
}
function system_update_119() {
  $ret = array();
  foreach (node_get_types() as $type => $name) {
    $node_options = array();
    if (variable_get('node_status_' . $type, 1)) {
      $node_options[] = 'status';
    }
    if (variable_get('node_moderate_' . $type, 0)) {
      $node_options[] = 'moderate';
    }
    if (variable_get('node_promote_' . $type, 1)) {
      $node_options[] = 'promote';
    }
    if (variable_get('node_sticky_' . $type, 0)) {
      $node_options[] = 'sticky';
    }
    if (variable_get('node_revision_' . $type, 0)) {
      $node_options[] = 'revision';
    }
    variable_set('node_options_' . $type, $node_options);
    variable_del('node_status_' . $type);
    variable_del('node_moderate_' . $type);
    variable_del('node_promote_' . $type);
    variable_del('node_sticky_' . $type);
    variable_del('node_revision_' . $type);
  }
  return $ret;
}
function system_update_120() {
  $ret = array();

  // Rewrite old URL aliases. Works for both PostgreSQL and MySQL
  $result = db_query("SELECT pid, src FROM {url_alias} WHERE src LIKE 'blog/%%'");
  while ($alias = db_fetch_object($result)) {
    list(, $page, $op, $uid) = explode('/', $alias->src);
    if ($page == 'feed') {
      $new = "blog/{$uid}/feed";
      db_query("UPDATE {url_alias} SET src = '%s' WHERE pid = %d", $new, $alias->pid);
    }
  }
  return $ret;
}
function system_update_121() {
  $ret = array();

  // Remove the unused page table.
  $ret[] = update_sql('DROP TABLE {page}');
  return $ret;
}
function system_update_122() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {blocks} ADD types text");
  return $ret;
}
function system_update_123() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("ALTER TABLE {vocabulary} ADD module varchar(255) NOT NULL default ''");
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {
    $ret[] = update_sql("ALTER TABLE {vocabulary} ADD module varchar(255)");
    $ret[] = update_sql("UPDATE {vocabulary} SET module = ''");
    $ret[] = update_sql("ALTER TABLE {vocabulary} ALTER COLUMN module SET NOT NULL");
    $ret[] = update_sql("ALTER TABLE {vocabulary} ALTER COLUMN module SET DEFAULT ''");
  }
  $ret[] = update_sql("UPDATE {vocabulary} SET module = 'taxonomy'");
  $vid = variable_get('forum_nav_vocabulary', '');
  if (!empty($vid)) {
    $ret[] = update_sql("UPDATE {vocabulary} SET module = 'forum' WHERE vid = " . $vid);
  }
  return $ret;
}
function system_update_124() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {

    // redo update_105, correctly creating node_comment_statistics
    $ret[] = update_sql("DROP TABLE IF EXISTS {node_comment_statistics}");
    $ret[] = update_sql("CREATE TABLE {node_comment_statistics} (\n      nid int unsigned NOT NULL auto_increment,\n      last_comment_timestamp int NOT NULL default '0',\n      last_comment_name varchar(60) default NULL,\n      last_comment_uid int NOT NULL default '0',\n      comment_count int unsigned NOT NULL default '0',\n      PRIMARY KEY (nid),\n      KEY node_comment_timestamp (last_comment_timestamp)\n      )");
  }
  else {

    // also drop incorrectly named table for PostgreSQL
    $ret[] = update_sql("DROP TABLE {node}_comment_statistics");
    $ret[] = update_sql("CREATE TABLE {node_comment_statistics} (\n      nid integer NOT NULL,\n      last_comment_timestamp integer NOT NULL default '0',\n      last_comment_name varchar(60)  default NULL,\n      last_comment_uid integer NOT NULL default '0',\n      comment_count integer NOT NULL default '0',\n      PRIMARY KEY (nid)\n    )");
    $ret[] = update_sql("CREATE INDEX {node_comment_statistics}_timestamp_idx ON {node_comment_statistics}(last_comment_timestamp);\n");
  }

  // initialize table
  $ret[] = update_sql("INSERT INTO {node_comment_statistics} (nid, last_comment_timestamp, last_comment_name, last_comment_uid, comment_count) SELECT n.nid, n.changed, NULL, 0, 0 FROM {node} n");

  // fill table
  $result = db_query("SELECT c.nid, c.timestamp, c.name, c.uid, COUNT(c.nid) as comment_count FROM {node} n LEFT JOIN {comments} c ON c.nid = n.nid WHERE c.status = 0 GROUP BY c.nid, c.timestamp, c.name, c.uid");
  while ($comment_record = db_fetch_object($result)) {
    $count = db_result(db_query('SELECT COUNT(cid) FROM {comments} WHERE nid = %d AND status = 0', $comment_record->nid));
    db_query("UPDATE {node_comment_statistics} SET comment_count = %d, last_comment_timestamp = %d, last_comment_name = '%s', last_comment_uid = %d WHERE nid = %d", $count, $comment_record->timestamp, $comment_record->name, $comment_record->uid, $comment_record->nid);
  }
  return $ret;
}
function system_update_125() {

  // Postgres only update.
  $ret = array();
  if ($GLOBALS['db_type'] == 'pgsql') {
    $ret[] = update_sql("CREATE OR REPLACE FUNCTION if(boolean, anyelement, anyelement) RETURNS anyelement AS '\n          SELECT CASE WHEN \$1 THEN \$2 ELSE \$3 END;\n        ' LANGUAGE 'sql'");
    $ret[] = update_sql("CREATE FUNCTION greatest(integer, integer, integer) RETURNS integer AS '\n                          SELECT greatest(\$1, greatest(\$2, \$3));\n                        ' LANGUAGE 'sql'");
  }
  return $ret;
}
function system_update_126() {
  variable_set('forum_block_num_0', variable_get('forum_block_num', 5));
  variable_set('forum_block_num_1', variable_get('forum_block_num', 5));
  variable_del('forum_block_num');
  return array();
}
function system_update_127() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'pgsql') {
    $ret[] = update_sql("ALTER TABLE {poll} RENAME voters TO polled");
  }
  else {
    if ($GLOBALS['db_type'] == 'mysql') {
      $ret[] = update_sql("ALTER TABLE {poll} CHANGE voters polled longtext");
    }
  }
  return $ret;
}
function system_update_128() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql('ALTER TABLE {term_node} ADD PRIMARY KEY (tid,nid)');
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {
    $ret[] = update_sql('ALTER TABLE {term_node} ADD PRIMARY KEY (tid,nid)');
  }
  return $ret;
}
function system_update_129() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("ALTER TABLE {vocabulary} ADD tags tinyint unsigned default '0' NOT NULL");
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {
    db_add_column($ret, 'vocabulary', 'tags', 'smallint', array(
      'default' => 0,
      'not null' => TRUE,
    ));
  }
  return $ret;
}
function system_update_130() {
  $ret = array();

  // This update has been moved to update_fix_sessions in update.php because it
  // is needed for the basic functioning of the update script.
  return $ret;
}
function system_update_131() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("ALTER TABLE {boxes} DROP INDEX title");

    // Removed recreation of the index, which is not present in the db schema
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {
    $ret[] = update_sql("ALTER TABLE {boxes} DROP CONSTRAINT {boxes}_title_key");
  }
  return $ret;
}
function system_update_132() {

  /**
   * PostgreSQL only update.
   */
  $ret = array();
  if (!variable_get('update_132_done', FALSE)) {
    if ($GLOBALS['db_type'] == 'pgsql') {
      $ret[] = update_sql('DROP TABLE {search_total}');
      $ret[] = update_sql("CREATE TABLE {search_total} (\n        word varchar(50) NOT NULL default '',\n             count float default NULL)");
      $ret[] = update_sql('CREATE INDEX {search_total}_word_idx ON {search_total}(word)');

      /**
       * Wipe the search index
       */
      include_once './' . drupal_get_path('module', 'search') . '/search.module';
      search_wipe();
    }
    variable_del('update_132_done');
  }
  return $ret;
}
function system_update_133() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("CREATE TABLE {contact} (\n      subject varchar(255) NOT NULL default '',\n      recipients longtext NOT NULL,\n      reply longtext NOT NULL\n      )");
    $ret[] = update_sql("ALTER TABLE {users} ADD login int NOT NULL default '0'");
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {

    // Table {contact} is changed in update_143() so I have moved it's creation there.
    // It was never created here for postgres because of errors.
    db_add_column($ret, 'users', 'login', 'int', array(
      'default' => 0,
      'not null' => TRUE,
    ));
  }
  return $ret;
}
function system_update_134() {
  $ret = array();
  $ret[] = update_sql('ALTER TABLE {blocks} DROP types');
  return $ret;
}
function system_update_135() {
  if (!variable_get('update_135_done', FALSE)) {
    $result = db_query("SELECT delta FROM {blocks} WHERE module = 'aggregator'");
    while ($block = db_fetch_object($result)) {
      list($type, $id) = explode(':', $block->delta);
      db_query("UPDATE {blocks} SET delta = '%s' WHERE module = 'aggregator' AND delta = '%s'", $type . '-' . $id, $block->delta);
    }
    variable_del('update_135_done');
  }
  return array();
}
function system_update_136() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      $ret[] = update_sql("DROP INDEX {users}_changed_idx");

      // We drop the index first because it won't be renamed
      $ret[] = update_sql("ALTER TABLE {users} RENAME changed TO access");
      $ret[] = update_sql("CREATE INDEX {users}_access_idx on {users}(access)");

      // Re-add the index
      break;
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {users} CHANGE COLUMN changed access int NOT NULL default '0'");
      break;
  }
  $ret[] = update_sql('UPDATE {users} SET access = login WHERE login > created');
  $ret[] = update_sql('UPDATE {users} SET access = created WHERE access = 0');
  return $ret;
}
function system_update_137() {
  $ret = array();
  if (!variable_get('update_137_done', FALSE)) {
    if ($GLOBALS['db_type'] == 'mysql') {
      $ret[] = update_sql("ALTER TABLE {locales_source} CHANGE location location varchar(255) NOT NULL default ''");
    }
    elseif ($GLOBALS['db_type'] == 'pgsql') {
      db_change_column($ret, 'locales_source', 'location', 'location', 'varchar(255)', array(
        'not null' => TRUE,
        'default' => "''",
      ));
    }
    variable_del('update_137_done');
  }
  return $ret;
}
function system_update_138() {
  $ret = array();

  // duplicate of update_97 which never got into the default database.* files.
  $ret[] = update_sql("INSERT INTO {url_alias} (src, dst) VALUES ('node/feed', 'rss.xml')");
  return $ret;
}
function system_update_139() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      db_add_column($ret, 'accesslog', 'timer', 'int', array(
        'not null' => TRUE,
        'default' => 0,
      ));
      break;
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {accesslog} ADD timer int unsigned NOT NULL default '0'");
      break;
  }
  return $ret;
}
function system_update_140() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("ALTER TABLE {url_alias} ADD INDEX (src)");
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {
    $ret[] = update_sql("CREATE INDEX {url_alias}_src_idx ON {url_alias}(src)");
  }
  return $ret;
}
function system_update_141() {
  $ret = array();
  variable_del('upload_maxsize_total');
  return $ret;
}
function system_update_142() {
  $ret = array();

  // This update has been moved to update_fix_sessions in update.php because it
  // is needed for the basic functioning of the update script.
  return $ret;
}
function system_update_143() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("ALTER TABLE {contact} CHANGE subject category VARCHAR(255) NOT NULL ");
    $ret[] = update_sql("ALTER TABLE {contact} ADD PRIMARY KEY (category)");
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {

    // Why the table is created here? See update_133().
    $ret[] = update_sql("CREATE TABLE {contact} (\n      category varchar(255) NOT NULL default '',\n      recipients text NOT NULL default '',\n      reply text NOT NULL default '',\n      PRIMARY KEY (category))");
  }
  return $ret;
}
function system_update_144() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("ALTER TABLE {node} CHANGE type type VARCHAR(32) NOT NULL");
  }
  elseif ($GLOBALS['db_type'] == 'pgsql') {
    $ret[] = update_sql("DROP INDEX {node}_type_idx");

    // Drop indexes using "type" column
    $ret[] = update_sql("DROP INDEX {node}_title_idx");
    db_change_column($ret, 'node', 'type', 'type', 'varchar(32)', array(
      'not null' => TRUE,
      'default' => "''",
    ));

    // Let's recreate the indexes
    $ret[] = update_sql("CREATE INDEX {node}_type_idx ON {node}(type)");
    $ret[] = update_sql("CREATE INDEX {node}_title_type_idx ON {node}(title,type)");
    $ret[] = update_sql("CREATE INDEX {node}_status_type_nid_idx ON {node}(status,type,nid)");
  }
  return $ret;
}
function system_update_145() {
  $default_theme = variable_get('theme_default', 'garland');
  $themes = list_themes();
  if (!array_key_exists($default_theme, $themes)) {
    variable_set('theme_default', 'garland');
    $default_theme = 'garland';
  }
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      db_change_column($ret, 'blocks', 'region', 'region', 'varchar(64)', array(
        'default' => "'left'",
        'not null' => TRUE,
      ));
      db_add_column($ret, 'blocks', 'theme', 'varchar(255)', array(
        'not null' => TRUE,
        'default' => "''",
      ));
      break;
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {blocks} CHANGE region region varchar(64) default 'left' NOT NULL");
      $ret[] = update_sql("ALTER TABLE {blocks} ADD theme varchar(255) NOT NULL default ''");
      break;
  }

  // Intialize block data for default theme
  $ret[] = update_sql("UPDATE {blocks} SET region = 'left' WHERE region = '0'");
  $ret[] = update_sql("UPDATE {blocks} SET region = 'right' WHERE region = '1'");
  db_query("UPDATE {blocks} SET theme = '%s'", $default_theme);

  // Initialize block data for other enabled themes.
  $themes = list_themes();
  foreach (array_keys($themes) as $theme) {
    if ($theme != $default_theme && $themes[$theme]->status == 1) {
      system_initialize_theme_blocks($theme);
    }
  }
  return $ret;
}
function system_update_146() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("CREATE TABLE {node_revisions}\n                                SELECT nid, nid AS vid, uid, type, title, body, teaser, changed AS timestamp, format\n                                FROM {node}");
    $ret[] = update_sql("ALTER TABLE {node_revisions} CHANGE nid nid int unsigned NOT NULL default '0'");
    $ret[] = update_sql("ALTER TABLE {node_revisions} ADD log longtext");
    $ret[] = update_sql("ALTER TABLE {node} ADD vid int unsigned NOT NULL default '0'");
    $ret[] = update_sql("ALTER TABLE {files} ADD vid int unsigned NOT NULL default '0'");
    $ret[] = update_sql("ALTER TABLE {book} ADD vid int unsigned NOT NULL default '0'");
    $ret[] = update_sql("ALTER TABLE {forum} ADD vid int unsigned NOT NULL default '0'");
    $ret[] = update_sql("ALTER TABLE {book} DROP PRIMARY KEY");
    $ret[] = update_sql("ALTER TABLE {forum} DROP PRIMARY KEY");
    $ret[] = update_sql("ALTER TABLE {files} DROP PRIMARY KEY");
    $ret[] = update_sql("UPDATE {node} SET vid = nid");
    $ret[] = update_sql("UPDATE {forum} SET vid = nid");
    $ret[] = update_sql("UPDATE {book} SET vid = nid");
    $ret[] = update_sql("UPDATE {files} SET vid = nid");
    $ret[] = update_sql("ALTER TABLE {book} ADD PRIMARY KEY vid (vid)");
    $ret[] = update_sql("ALTER TABLE {forum} ADD PRIMARY KEY vid (vid)");
    $ret[] = update_sql("ALTER TABLE {node_revisions} ADD PRIMARY KEY vid (vid)");
    $ret[] = update_sql("ALTER TABLE {node_revisions} ADD KEY nid (nid)");
    $ret[] = update_sql("ALTER TABLE {node_revisions} ADD KEY uid (uid)");
    $ret[] = update_sql("CREATE TABLE {old_revisions} SELECT nid, type, revisions FROM {node} WHERE revisions != ''");
    $ret[] = update_sql("ALTER TABLE {book} ADD KEY nid (nid)");
    $ret[] = update_sql("ALTER TABLE {forum} ADD KEY nid (nid)");
    $ret[] = update_sql("ALTER TABLE {files} ADD KEY fid (fid)");
    $ret[] = update_sql("ALTER TABLE {files} ADD KEY vid (vid)");
    $vid = db_next_id('{node}_nid');
    $ret[] = update_sql("INSERT INTO {sequences} (name, id) VALUES ('{node_revisions}_vid', {$vid})");
  }
  else {

    // pgsql
    $ret[] = update_sql("CREATE TABLE {node_revisions} (\n      nid integer NOT NULL default '0',\n      vid integer NOT NULL default '0',\n      uid integer NOT NULL default '0',\n      title varchar(128) NOT NULL default '',\n      body text NOT NULL default '',\n      teaser text NOT NULL default '',\n      log text NOT NULL default '',\n      timestamp integer NOT NULL default '0',\n      format int NOT NULL default '0',\n      PRIMARY KEY (vid))");
    $ret[] = update_sql("INSERT INTO {node_revisions} (nid, vid, uid, title, body, teaser, timestamp, format)\n      SELECT nid, nid AS vid, uid, title, body, teaser, changed AS timestamp, format\n      FROM {node}");
    $ret[] = update_sql('CREATE INDEX {node_revisions}_nid_idx ON {node_revisions}(nid)');
    $ret[] = update_sql('CREATE INDEX {node_revisions}_uid_idx ON {node_revisions}(uid)');
    $vid = db_next_id('{node}_nid');
    $ret[] = update_sql("CREATE SEQUENCE {node_revisions}_vid_seq INCREMENT 1 START {$vid}");
    db_add_column($ret, 'node', 'vid', 'int', array(
      'not null' => TRUE,
      'default' => 0,
    ));
    db_add_column($ret, 'files', 'vid', 'int', array(
      'not null' => TRUE,
      'default' => 0,
    ));
    db_add_column($ret, 'book', 'vid', 'int', array(
      'not null' => TRUE,
      'default' => 0,
    ));
    db_add_column($ret, 'forum', 'vid', 'int', array(
      'not null' => TRUE,
      'default' => 0,
    ));
    $ret[] = update_sql("ALTER TABLE {book} DROP CONSTRAINT {book}_pkey");
    $ret[] = update_sql("ALTER TABLE {forum} DROP CONSTRAINT {forum}_pkey");
    $ret[] = update_sql("ALTER TABLE {files} DROP CONSTRAINT {files}_pkey");
    $ret[] = update_sql("UPDATE {node} SET vid = nid");
    $ret[] = update_sql("UPDATE {forum} SET vid = nid");
    $ret[] = update_sql("UPDATE {book} SET vid = nid");
    $ret[] = update_sql("UPDATE {files} SET vid = nid");
    $ret[] = update_sql("ALTER TABLE {book} ADD PRIMARY KEY (vid)");
    $ret[] = update_sql("ALTER TABLE {forum} ADD PRIMARY KEY (vid)");
    $ret[] = update_sql("CREATE TABLE {old_revisions} AS SELECT nid, type, revisions FROM {node} WHERE revisions != ''");
    $ret[] = update_sql('CREATE INDEX {node}_vid_idx ON {node}(vid)');
    $ret[] = update_sql('CREATE INDEX {forum}_nid_idx ON {forum}(nid)');
    $ret[] = update_sql('CREATE INDEX {files}_fid_idx ON {files}(fid)');
    $ret[] = update_sql('CREATE INDEX {files}_vid_idx ON {files}(vid)');
  }

  // Move logs too.
  $result = db_query("SELECT nid, log FROM {book} WHERE log != ''");
  while ($row = db_fetch_object($result)) {
    db_query("UPDATE {node_revisions} SET log = '%s' WHERE vid = %d", $row->log, $row->nid);
  }
  $ret[] = update_sql("ALTER TABLE {book} DROP log");
  $ret[] = update_sql("ALTER TABLE {node} DROP teaser");
  $ret[] = update_sql("ALTER TABLE {node} DROP body");
  $ret[] = update_sql("ALTER TABLE {node} DROP format");
  $ret[] = update_sql("ALTER TABLE {node} DROP revisions");
  return $ret;
}
function system_update_147() {
  $ret = array();

  // this update is mysql only, pgsql should get it right in the first try.
  if ($GLOBALS['db_type'] == 'mysql') {
    $ret[] = update_sql("ALTER TABLE {node_revisions} DROP type");
  }
  return $ret;
}
function system_update_148() {
  $ret = array();

  // Add support for tracking users' session ids (useful for tracking anon users)
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      db_add_column($ret, 'accesslog', 'sid', 'varchar(32)', array(
        'not null' => TRUE,
        'default' => "''",
      ));
      break;
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {accesslog} ADD sid varchar(32) NOT NULL default ''");
      break;
  }
  return $ret;
}
function system_update_149() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      db_add_column($ret, 'files', 'description', 'varchar(255)', array(
        'not null' => TRUE,
        'default' => "''",
      ));
      break;
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {files} ADD COLUMN description VARCHAR(255) NOT NULL DEFAULT ''");
      break;
    default:
      break;
  }
  return $ret;
}
function system_update_150() {
  $ret = array();
  $ret[] = update_sql("DELETE FROM {variable} WHERE name = 'node_cron_last'");
  $ret[] = update_sql("DELETE FROM {variable} WHERE name = 'minimum_word_size'");
  $ret[] = update_sql("DELETE FROM {variable} WHERE name = 'remove_short'");
  $ret[] = update_sql("DELETE FROM {node_counter} WHERE nid = 0");
  $ret[] = update_sql('DROP TABLE {search_index}');
  $ret[] = update_sql('DROP TABLE {search_total}');
  switch ($GLOBALS['db_type']) {
    case 'mysqli':
    case 'mysql':
      $ret[] = update_sql("CREATE TABLE {search_dataset} (\n                           sid int unsigned NOT NULL default '0',\n                           type varchar(16) default NULL,\n                           data longtext NOT NULL,\n                           KEY sid_type (sid, type)\n                           )");
      $ret[] = update_sql("CREATE TABLE {search_index} (\n                           word varchar(50) NOT NULL default '',\n                           sid int unsigned NOT NULL default '0',\n                           type varchar(16) default NULL,\n                           fromsid int unsigned NOT NULL default '0',\n                           fromtype varchar(16) default NULL,\n                           score float default NULL,\n                           KEY sid_type (sid, type),\n                           KEY from_sid_type (fromsid, fromtype),\n                           KEY word (word)\n                           )");
      $ret[] = update_sql("CREATE TABLE {search_total} (\n                           word varchar(50) NOT NULL default '',\n                           count float default NULL,\n                           PRIMARY KEY word (word)\n                           )");
      break;
    case 'pgsql':
      $ret[] = update_sql("CREATE TABLE {search_dataset} (\n        sid integer NOT NULL default '0',\n        type varchar(16) default NULL,\n        data text NOT NULL default '')");
      $ret[] = update_sql("CREATE INDEX {search_dataset}_sid_type_idx ON {search_dataset}(sid, type)");
      $ret[] = update_sql("CREATE TABLE {search_index} (\n        word varchar(50) NOT NULL default '',\n        sid integer NOT NULL default '0',\n        type varchar(16) default NULL,\n        fromsid integer NOT NULL default '0',\n        fromtype varchar(16) default NULL,\n        score float default NULL)");
      $ret[] = update_sql("CREATE INDEX {search_index}_sid_type_idx ON {search_index}(sid, type)");
      $ret[] = update_sql("CREATE INDEX {search_index}_fromsid_fromtype_idx ON {search_index}(fromsid, fromtype)");
      $ret[] = update_sql("CREATE INDEX {search_index}_word_idx ON {search_index}(word)");
      $ret[] = update_sql("CREATE TABLE {search_total} (\n        word varchar(50) NOT NULL default '',\n        count float default NULL,\n        PRIMARY KEY(word))");
      break;
    default:
      break;
  }
  return $ret;
}
function system_update_151() {
  $ret = array();
  $ts = variable_get('theme_settings', NULL);

  // set up data array so we can loop over both sets of links
  $menus = array(
    0 => array(
      'links_var' => 'primary_links',
      'toggle_var' => 'toggle_primary_links',
      'more_var' => 'primary_links_more',
      'menu_name' => 'Primary links',
      'menu_var' => 'menu_primary_menu',
      'pid' => 0,
    ),
    1 => array(
      'links_var' => 'secondary_links',
      'toggle_var' => 'toggle_secondary_links',
      'more_var' => 'secondary_links_more',
      'menu_name' => 'Secondary links',
      'menu_var' => 'menu_secondary_menu',
      'pid' => 0,
    ),
  );
  for ($loop = 0; $loop <= 1; $loop++) {

    // create new Primary and Secondary links menus
    $menus[$loop]['pid'] = db_next_id('{menu}_mid');
    $ret[] = update_sql("INSERT INTO {menu} (mid, pid, path, title, description, weight, type) " . "VALUES ({$menus[$loop]['pid']}, 0, '', '{$menus[$loop]['menu_name']}', '', 0, 115)");

    // Gather links from various settings into a single array.
    $phptemplate_links = variable_get("phptemplate_" . $menus[$loop]['links_var'], array());
    if (empty($phptemplate_links)) {
      $phptemplate_links = array(
        'text' => array(),
        'link' => array(),
      );
    }
    if (isset($ts) && is_array($ts)) {
      if (is_array($ts[$menus[$loop]['links_var']])) {
        $theme_links = $ts[$menus[$loop]['links_var']];
      }
      else {

        // Convert old xtemplate style links.
        preg_match_all('/<a\\s+.*?href=[\\"\'\\s]?(.*?)[\\"\'\\s]?>(.*?)<\\/a>/i', $ts[$menus[$loop]['links_var']], $urls);
        $theme_links['text'] = $urls[2];
        $theme_links['link'] = $urls[1];
      }
    }
    else {
      $theme_links = array(
        'text' => array(),
        'link' => array(),
      );
    }
    $links['text'] = array_merge($phptemplate_links['text'], $theme_links['text']);
    $links['link'] = array_merge($phptemplate_links['link'], $theme_links['link']);

    // insert all entries from theme links into new menus
    $num_inserted = 0;
    for ($i = 0; $i < count($links['text']); $i++) {
      if ($links['text'][$i] != "" && $links['link'][$i] != "") {
        $num_inserted++;
        $node_unalias = db_fetch_array(db_query("SELECT src FROM {url_alias} WHERE dst = '%s'", $links['link'][$i]));
        if (isset($node_unalias) && is_array($node_unalias)) {
          $link_path = $node_unalias['src'];
        }
        else {
          $link_path = $links['link'][$i];
        }
        $mid = db_next_id('{menu}_mid');
        $ret[] = update_sql("INSERT INTO {menu} (mid, pid, path, title, description, weight, type) " . "VALUES ({$mid}, {$menus[$loop]['pid']}, '" . db_escape_string($link_path) . "', '" . db_escape_string($links['text'][$i]) . "', '" . db_escape_string($links['description'][$i]) . "', 0, 118)");
      }
    }

    // delete Secondary links if not populated.
    if ($loop == 1 && $num_inserted == 0) {
      db_query("DELETE FROM {menu} WHERE mid={$menus[$loop]['pid']}");
    }

    // Set menu_primary_menu and menu_primary_menu variables if links were
    // imported. If the user had links but the toggle display was off, they
    // will need to disable the new links manually in admins/settings/menu.
    if ($num_inserted == 0) {
      variable_set($menus[$loop]['menu_var'], 0);
    }
    else {
      variable_set($menus[$loop]['menu_var'], $menus[$loop]['pid']);
    }
    variable_del('phptemplate_' . $menus[$loop]['links_var']);
    variable_del('phptemplate_' . $menus[$loop]['links_var'] . '_more');
    variable_del($menus[$loop]['toggle_var']);
    variable_del($menus[$loop]['more_var']);

    // If user has old xtemplate links in a string, leave them in the var.
    if (isset($ts) && is_array($ts) && is_array($ts[$menus[$loop]['links_var']])) {
      variable_del($menus[$loop]['links_var']);
    }
  }
  if (isset($ts) && is_array($ts)) {
    variable_set('theme_settings', $ts);
  }
  $ret[] = update_sql("UPDATE {system} SET status = 1 WHERE name = 'menu'");
  return $ret;
}
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;
}
function system_update_153() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      $ret[] = update_sql("ALTER TABLE {contact} DROP CONSTRAINT {contact}_pkey");
      $ret[] = update_sql("CREATE SEQUENCE {contact}_cid_seq");
      db_add_column($ret, 'contact', 'cid', 'int', array(
        'not null' => TRUE,
        'default' => "nextval('{contact}_cid_seq')",
      ));
      $ret[] = update_sql("ALTER TABLE {contact} ADD PRIMARY KEY (cid)");
      $ret[] = update_sql("ALTER TABLE {contact} ADD CONSTRAINT {contact}_category_key UNIQUE (category)");
      break;
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {contact} DROP PRIMARY KEY");
      $ret[] = update_sql("ALTER TABLE {contact} ADD COLUMN cid int NOT NULL PRIMARY KEY auto_increment");
      $ret[] = update_sql("ALTER TABLE {contact} ADD UNIQUE KEY category (category)");
      break;
  }
  return $ret;
}
function system_update_154() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      db_add_column($ret, 'contact', 'weight', 'smallint', array(
        'not null' => TRUE,
        'default' => 0,
      ));
      db_add_column($ret, 'contact', 'selected', 'smallint', array(
        'not null' => TRUE,
        'default' => 0,
      ));
      break;
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {contact} ADD COLUMN weight tinyint NOT NULL DEFAULT 0");
      $ret[] = update_sql("ALTER TABLE {contact} ADD COLUMN selected tinyint NOT NULL DEFAULT 0");
      break;
  }
  return $ret;
}
function system_update_155() {
  $ret = array();

  // Postgresql only update
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      $ret[] = update_sql("DROP TABLE {cache}");
      $ret[] = update_sql("CREATE TABLE {cache} (\n        cid varchar(255) NOT NULL default '',\n        data bytea default '',\n        expire integer NOT NULL default '0',\n        created integer NOT NULL default '0',\n        headers text default '',\n        PRIMARY KEY (cid)\n        )");
      $ret[] = update_sql("CREATE INDEX {cache}_expire_idx ON {cache}(expire)");
      break;
    case 'mysql':
    case 'mysqli':
      break;
  }
  return $ret;
}
function system_update_156() {
  $ret = array();
  $ret[] = update_sql("DELETE FROM {cache}");
  system_themes();
  return $ret;
}
function system_update_157() {
  $ret = array();
  $ret[] = update_sql("DELETE FROM {url_alias} WHERE src = 'node/feed' AND dst = 'rss.xml'");
  $ret[] = update_sql("INSERT INTO {url_alias} (src, dst) VALUES ('rss.xml', 'node/feed')");
  return $ret;
}
function system_update_158() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysqli':
    case 'mysql':
      $ret[] = update_sql("ALTER TABLE {old_revisions} ADD done tinyint NOT NULL DEFAULT 0");
      $ret[] = update_sql("ALTER TABLE {old_revisions} ADD INDEX (done)");
      break;
    case 'pgsql':
      db_add_column($ret, 'old_revisions', 'done', 'smallint', array(
        'not null' => TRUE,
        'default' => 0,
      ));
      $ret[] = update_sql('CREATE INDEX {old_revisions}_done_idx ON {old_revisions}(done)');
      break;
  }
  return $ret;
}

/**
 * Retrieve data out of the old_revisions table and put into new revision
 * system.
 *
 * The old_revisions table is not deleted because any data which could not be
 * put into the new system is retained.
 */
function system_update_159() {
  $ret = array();
  $result = db_query_range("SELECT * FROM {old_revisions} WHERE done = 0 AND type IN ('page', 'story', 'poll', 'book', 'forum', 'blog') ORDER BY nid DESC", 0, 20);
  if (db_num_rows($result)) {
    $vid = db_next_id('{node_revisions}_vid');
    while ($node = db_fetch_object($result)) {
      $revisions = unserialize($node->revisions);
      if (isset($revisions) && is_array($revisions) && count($revisions) > 0) {
        $revisions_query = array();
        $revisions_args = array();
        $book_query = array();
        $book_args = array();
        $forum_query = array();
        $forum_args = array();
        foreach ($revisions as $version) {
          $revision = array();
          foreach ($version['node'] as $node_field => $node_value) {
            $revision[$node_field] = $node_value;
          }
          $revision['uid'] = $version['uid'];
          $revision['timestamp'] = $version['timestamp'];
          $vid++;
          $revisions_query[] = "(%d, %d, %d, '%s', '%s', '%s', '%s', %d, %d)";
          $revisions_args = array_merge($revisions_args, array(
            $node->nid,
            $vid,
            $revision['uid'],
            $revision['title'],
            $revision['body'],
            $revision['teaser'],
            $revision['log'],
            $revision['timestamp'],
            $revision['format'],
          ));
          switch ($node->type) {
            case 'forum':
              if ($revision['tid'] > 0) {
                $forum_query[] = "(%d, %d, %d)";
                $forum_args = array_merge($forum_args, array(
                  $vid,
                  $node->nid,
                  $revision['tid'],
                ));
              }
              break;
            case 'book':
              $book_query[] = "(%d, %d, %d, %d)";
              $book_args = array_merge($book_args, array(
                $vid,
                $node->nid,
                $revision['parent'],
                $revision['weight'],
              ));
              break;
          }
        }
        if (count($revisions_query)) {
          $revision_status = db_query("INSERT INTO {node_revisions} (nid, vid, uid, title, body, teaser, log, timestamp, format) VALUES " . implode(',', $revisions_query), $revisions_args);
        }
        if (count($forum_query)) {
          $forum_status = db_query("INSERT INTO {forum} (vid, nid, tid) VALUES " . implode(',', $forum_query), $forum_args);
        }
        if (count($book_query)) {
          $book_status = db_query("INSERT INTO {book} (vid, nid, parent, weight) VALUES " . implode(',', $book_query), $book_args);
        }
        $delete = FALSE;
        switch ($node->type) {
          case 'forum':
            if ($forum_status && $revision_status) {
              $delete = TRUE;
            }
            break;
          case 'book':
            if ($book_status && $revision_status) {
              $delete = TRUE;
            }
            break;
          default:
            if ($revision_status) {
              $delete = TRUE;
            }
            break;
        }
        if ($delete) {
          db_query('DELETE FROM {old_revisions} WHERE nid = %d', $node->nid);
        }
        else {
          db_query('UPDATE {old_revisions} SET done = 1 WHERE nid = %d', $node->nid);
        }
        switch ($GLOBALS['db_type']) {
          case 'mysqli':
          case 'mysql':
            $ret[] = update_sql("UPDATE {sequences} SET id = {$vid} WHERE name = '{node_revisions}_vid'");
            break;
          case 'pgsql':
            $ret[] = update_sql("SELECT setval('{node_revisions}_vid_seq', {$vid})");
            break;
        }
      }
      else {
        db_query('UPDATE {old_revisions} SET done = 1 WHERE nid = %d', $node->nid);
        watchdog('php', "Recovering old revisions for node {$node->nid} failed.", WATCHDOG_WARNING);
      }
    }
  }
  if (db_num_rows($result) < 20) {
    $ret[] = update_sql('ALTER TABLE {old_revisions} DROP done');
  }
  else {
    $ret['#finished'] = FALSE;
  }
  return $ret;
}
function system_update_160() {
  $types = module_invoke('node', 'get_types');
  if (is_array($types)) {
    foreach ($types as $type) {
      if (!is_array(variable_get("node_options_{$type}", array()))) {
        variable_set("node_options_{$type}", array());
      }
    }
  }
  return array();
}
function system_update_161() {
  variable_del('forum_icon_path');
  return array();
}
function system_update_162() {
  $ret = array();

  // PostgreSQL only update
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      $ret[] = update_sql('DROP INDEX {book}_parent');
      $ret[] = update_sql('CREATE INDEX {book}_parent_idx ON {book}(parent)');
      $ret[] = update_sql('DROP INDEX {node_comment_statistics}_timestamp_idx');
      $ret[] = update_sql('CREATE INDEX {node_comment_statistics}_last_comment_timestamp_idx ON {node_comment_statistics}(last_comment_timestamp)');
      $ret[] = update_sql('ALTER TABLE {filters} ALTER delta SET DEFAULT 0');
      $ret[] = update_sql('DROP INDEX {filters}_module_idx');
      $ret[] = update_sql('DROP INDEX {locales_target}_lid_idx');
      $ret[] = update_sql('DROP INDEX {locales_target}_lang_idx');
      $ret[] = update_sql('CREATE INDEX {locales_target}_locale_idx ON {locales_target}(locale)');
      $ret[] = update_sql('DROP INDEX {node}_created');
      $ret[] = update_sql('CREATE INDEX {node}_created_idx ON {node}(created)');
      $ret[] = update_sql('DROP INDEX {node}_changed');
      $ret[] = update_sql('CREATE INDEX {node}_changed_idx ON {node}(changed)');
      $ret[] = update_sql('DROP INDEX {profile_fields}_category');
      $ret[] = update_sql('CREATE INDEX {profile_fields}_category_idx ON {profile_fields}(category)');
      $ret[] = update_sql('DROP INDEX {url_alias}_dst_idx');
      $ret[] = update_sql('CREATE UNIQUE INDEX {url_alias}_dst_idx ON {url_alias}(dst)');
      $ret[] = update_sql('CREATE INDEX {sessions}_uid_idx ON {sessions}(uid)');
      $ret[] = update_sql('CREATE INDEX {sessions}_timestamp_idx ON {sessions}(timestamp)');
      $ret[] = update_sql('ALTER TABLE {accesslog} DROP mask');
      db_change_column($ret, 'accesslog', 'path', 'path', 'text');
      db_change_column($ret, 'accesslog', 'url', 'url', 'text');
      db_change_column($ret, 'watchdog', 'link', 'link', 'text', array(
        'not null' => TRUE,
        'default' => "''",
      ));
      db_change_column($ret, 'watchdog', 'location', 'location', 'text', array(
        'not null' => TRUE,
        'default' => "''",
      ));
      db_change_column($ret, 'watchdog', 'referer', 'referer', 'text', array(
        'not null' => TRUE,
        'default' => "''",
      ));
      break;
  }
  return $ret;
}
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;
}
function system_update_164() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("CREATE TABLE {poll_votes} (\n          nid int unsigned NOT NULL,\n          uid int unsigned NOT NULL default 0,\n          hostname varchar(128) NOT NULL default '',\n          INDEX (nid),\n          INDEX (uid),\n          INDEX (hostname)\n      )");
      break;
    case 'pgsql':
      $ret[] = update_sql("CREATE TABLE {poll_votes} (\n          nid int NOT NULL,\n          uid int NOT NULL default 0,\n          hostname varchar(128) NOT NULL default ''\n      )");
      $ret[] = update_sql('CREATE INDEX {poll_votes}_nid_idx ON {poll_votes} (nid)');
      $ret[] = update_sql('CREATE INDEX {poll_votes}_uid_idx ON {poll_votes} (uid)');
      $ret[] = update_sql('CREATE INDEX {poll_votes}_hostname_idx ON {poll_votes} (hostname)');
      break;
  }
  $result = db_query('SELECT nid, polled FROM {poll}');
  while ($poll = db_fetch_object($result)) {
    foreach (explode(' ', $poll->polled) as $polled) {
      if ($polled[0] == '_') {

        // $polled is a user id
        db_query('INSERT INTO {poll_votes} (nid, uid) VALUES (%d, %d)', $poll->nid, substr($polled, 1, -1));
      }
      else {

        // $polled is a host
        db_query("INSERT INTO {poll_votes} (nid, hostname) VALUES (%d, '%s')", $poll->nid, $polled);
      }
    }
  }
  $ret[] = update_sql('ALTER TABLE {poll} DROP polled');
  return $ret;
}
function system_update_165() {
  $cron_last = max(variable_get('drupal_cron_last', 0), variable_get('ping_cron_last', 0));
  variable_set('cron_last', $cron_last);
  variable_del('drupal_cron_last');
  variable_del('ping_cron_last');
  return array();
}
function system_update_166() {
  $ret = array();
  $ret[] = update_sql("DROP TABLE {directory}");
  switch ($GLOBALS['db_type']) {
    case 'mysqli':
    case 'mysql':
      $ret[] = update_sql("CREATE TABLE {client} (\n        cid int unsigned NOT NULL auto_increment,\n        link varchar(255) NOT NULL default '',\n        name varchar(128) NOT NULL default '',\n        mail varchar(128) NOT NULL default '',\n        slogan longtext NOT NULL,\n        mission longtext NOT NULL,\n        users int NOT NULL default '0',\n        nodes int NOT NULL default '0',\n        version varchar(35) NOT NULL default'',\n        created int NOT NULL default '0',\n        changed int NOT NULL default '0',\n        PRIMARY KEY (cid)\n      )");
      $ret[] = update_sql("CREATE TABLE {client_system} (\n        cid int NOT NULL default '0',\n        name varchar(255) NOT NULL default '',\n        type varchar(255) NOT NULL default '',\n        PRIMARY KEY (cid,name)\n      )");
      break;
    case 'pgsql':
      $ret[] = update_sql("CREATE TABLE {client} (\n        cid SERIAL,\n        link varchar(255) NOT NULL default '',\n        name varchar(128) NOT NULL default '',\n        mail varchar(128) NOT NULL default '',\n        slogan text NOT NULL default '',\n        mission text NOT NULL default '',\n        users integer NOT NULL default '0',\n        nodes integer NOT NULL default '0',\n        version varchar(35) NOT NULL default'',\n        created integer NOT NULL default '0',\n        changed integer NOT NULL default '0',\n        PRIMARY KEY (cid)\n      )");
      $ret[] = update_sql("CREATE TABLE {client_system} (\n        cid integer NOT NULL,\n        name varchar(255) NOT NULL default '',\n        type varchar(255) NOT NULL default '',\n        PRIMARY KEY (cid,name)\n      )");
      break;
  }
  return $ret;
}
function system_update_167() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysqli':
    case 'mysql':
      $ret[] = update_sql("ALTER TABLE {vocabulary_node_types} CHANGE type type varchar(32) NOT NULL default ''");
      break;
    case 'pgsql':
      db_change_column($ret, 'vocabulary_node_types', 'type', 'type', 'varchar(32)', array(
        'not null' => TRUE,
        'default' => "''",
      ));
      $ret[] = update_sql("ALTER TABLE {vocabulary_node_types} ADD PRIMARY KEY (vid, type)");
      break;
  }
  return $ret;
}
function system_update_168() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {term_hierarchy} ADD PRIMARY KEY (tid, parent)");
  return $ret;
}
function system_update_169() {

  // Warn PGSQL admins if their database is set up incorrectly
  if ($GLOBALS['db_type'] == 'pgsql') {
    $encoding = db_result(db_query('SHOW server_encoding'));
    if (!in_array(strtolower($encoding), array(
      'unicode',
      'utf8',
    ))) {
      $msg = 'Your PostgreSQL database is set up with the wrong character encoding (' . $encoding . '). It is possible it will not work as expected. It is advised to recreate it with UTF-8/Unicode encoding. More information can be found in the <a href="http://www.postgresql.org/docs/7.4/interactive/multibyte.html">PostgreSQL documentation</a>.';
      watchdog('php', $msg, WATCHDOG_WARNING);
      drupal_set_message($msg, 'status');
    }
  }

  // Note: 'access' table manually updated in update.php
  return _system_update_utf8(array(
    'accesslog',
    'aggregator_category',
    'aggregator_category_feed',
    'aggregator_category_item',
    'aggregator_feed',
    'aggregator_item',
    'authmap',
    'blocks',
    'book',
    'boxes',
    'cache',
    'comments',
    'contact',
    'node_comment_statistics',
    'client',
    'client_system',
    'files',
    'filter_formats',
    'filters',
    'flood',
    'forum',
    'history',
    'locales_meta',
    'locales_source',
    'locales_target',
    'menu',
    'node',
    'node_access',
    'node_revisions',
    'profile_fields',
    'profile_values',
    'url_alias',
    'permission',
    'poll',
    'poll_votes',
    'poll_choices',
    'role',
    'search_dataset',
    'search_index',
    'search_total',
    'sessions',
    'sequences',
    'node_counter',
    'system',
    'term_data',
    'term_hierarchy',
    'term_node',
    'term_relation',
    'term_synonym',
    'users',
    'users_roles',
    'variable',
    'vocabulary',
    'vocabulary_node_types',
    'watchdog',
  ));
}
function system_update_170() {
  if (!variable_get('update_170_done', FALSE)) {
    switch ($GLOBALS['db_type']) {
      case 'pgsql':
        $ret = array();
        db_change_column($ret, 'system', 'schema_version', 'schema_version', 'smallint', array(
          'not null' => TRUE,
          'default' => -1,
        ));
        break;
      case 'mysql':
      case 'mysqli':
        db_query('ALTER TABLE {system} CHANGE schema_version schema_version smallint not null default -1');
        break;
    }

    // Set schema version -1 (uninstalled) for disabled modules (only affects contrib).
    db_query('UPDATE {system} SET schema_version = -1 WHERE status = 0 AND schema_version = 0');
  }
  return array();
}
function system_update_171() {
  $ret = array();
  $ret[] = update_sql('DELETE FROM {users_roles} WHERE rid IN (' . DRUPAL_ANONYMOUS_RID . ', ' . DRUPAL_AUTHENTICATED_RID . ')');
  return $ret;
}
function system_update_172() {

  // Multi-part update
  if (!isset($_SESSION['system_update_172'])) {
    $_SESSION['system_update_172'] = 0;
    $_SESSION['system_update_172_max'] = db_result(db_query('SELECT MAX(cid) FROM {comments}'));
  }
  include_once './' . drupal_get_path('module', 'comment') . '/comment.module';
  $limit = 20;
  $result = db_query_range("SELECT cid, thread FROM {comments} WHERE cid > %d ORDER BY cid ASC", $_SESSION['system_update_172'], 0, $limit);
  while ($comment = db_fetch_object($result)) {
    $_SESSION['system_update_172'] = $comment->cid;
    $thread = explode('.', rtrim($comment->thread, '/'));
    foreach ($thread as $i => $offset) {

      // Decode old-style comment codes: 1,2,...,9,90,91,92,...,99,990,991,...
      $thread[$i] = int2vancode((strlen($offset) - 1) * 10 + substr($offset, -1, 1));
    }
    $thread = implode('.', $thread) . '/';
    db_query("UPDATE {comments} SET thread = '%s' WHERE cid = %d", $thread, $comment->cid);
  }
  if ($_SESSION['system_update_172'] == $_SESSION['system_update_172_max']) {
    unset($_SESSION['system_update_172']);
    unset($_SESSION['system_update_172_max']);
    return array();
  }
  return array(
    '#finished' => $_SESSION['system_update_172'] / $_SESSION['system_update_172_max'],
  );
}
function system_update_173() {
  $ret = array();

  // State tracker to determine whether we keep a backup of the files table or not.
  $safe = TRUE;

  // PostgreSQL needs CREATE TABLE foobar _AS_ SELECT ...
  $AS = $GLOBALS['db_type'] == 'pgsql' ? 'AS' : '';

  // Backup the files table.
  $ret[] = update_sql("CREATE TABLE {files_backup} {$AS} SELECT * FROM {files}");

  // Do some files table sanity checking and cleanup.
  $ret[] = update_sql('DELETE FROM {files} WHERE fid = 0');
  $ret[] = update_sql('UPDATE {files} SET vid = nid WHERE vid = 0');

  // Create a temporary table to build the new file_revisions and files tables from.
  $ret[] = update_sql("CREATE TABLE {files_tmp} {$AS} SELECT * FROM {files}");
  $ret[] = update_sql('DROP TABLE {files}');
  switch ($GLOBALS['db_type']) {
    case 'pgsql':

      // create file_revisions table
      $ret[] = update_sql("CREATE TABLE {file_revisions} (\n        fid integer NOT NULL default 0,\n        vid integer NOT NULL default 0,\n        description varchar(255) NOT NULL default '',\n        list smallint NOT NULL default 0,\n        PRIMARY KEY (fid, vid))");
      $result = update_sql("INSERT INTO {file_revisions} SELECT DISTINCT ON (fid,vid) fid, vid, description, list FROM {files_tmp}");
      $ret[] = $result;
      if ($result['success'] === FALSE) {
        $safe = FALSE;
      }

      // Create normalized files table
      $ret[] = update_sql("CREATE TABLE {files} (\n        fid SERIAL,\n        nid integer NOT NULL default 0,\n        filename varchar(255) NOT NULL default '',\n        filepath varchar(255) NOT NULL default '',\n        filemime varchar(255) NOT NULL default '',\n        filesize integer NOT NULL default 0,\n        PRIMARY KEY (fid))");
      $result = update_sql("INSERT INTO {files} SELECT DISTINCT ON (fid) fid, nid, filename, filepath, filemime, filesize FROM {files_tmp}");
      $ret[] = $result;
      if ($result['success'] === FALSE) {
        $safe = FALSE;
      }
      $ret[] = update_sql("SELECT setval('{files}_fid_seq', max(fid)) FROM {files}");
      break;
    case 'mysqli':
    case 'mysql':

      // create file_revisions table
      $ret[] = update_sql("CREATE TABLE {file_revisions} (\n        fid int unsigned NOT NULL default 0,\n        vid int unsigned NOT NULL default 0,\n        description varchar(255) NOT NULL default '',\n        list tinyint unsigned NOT NULL default 0,\n        PRIMARY KEY (fid, vid)\n        ) /*!40100 DEFAULT CHARACTER SET utf8 */");

      // Try as you might mysql only does distinct row if you are selecting more than 1 column.
      $result = update_sql('INSERT INTO {file_revisions} SELECT DISTINCT fid , vid, description, list FROM {files_tmp}');
      $ret[] = $result;
      if ($result['success'] === FALSE) {
        $safe = FALSE;
      }
      $ret[] = update_sql("CREATE TABLE {files} (\n        fid int unsigned NOT NULL default 0,\n        nid int unsigned NOT NULL default 0,\n        filename varchar(255) NOT NULL default '',\n        filepath varchar(255) NOT NULL default '',\n        filemime varchar(255) NOT NULL default '',\n        filesize int unsigned NOT NULL default 0,\n        PRIMARY KEY (fid)\n        ) /*!40100 DEFAULT CHARACTER SET utf8 */");
      $result = update_sql("INSERT INTO {files} SELECT DISTINCT fid, nid, filename, filepath, filemime, filesize FROM {files_tmp}");
      $ret[] = $result;
      if ($result['success'] === FALSE) {
        $safe = FALSE;
      }
      break;
  }
  $ret[] = update_sql("DROP TABLE {files_tmp}");

  // Remove original files table if all went well. Otherwise preserve it and notify user.
  if ($safe) {
    $ret[] = update_sql("DROP TABLE {files_backup}");
  }
  else {
    drupal_set_message('Normalizing files table failed. A backup of the original table called {files_backup} remains in your database.');
  }
  return $ret;
}
function system_update_174() {

  // This update (update comments system variables on upgrade) has been removed.
  return array();
}
function system_update_175() {
  $result = db_query('SELECT * FROM {url_alias}');
  while ($path = db_fetch_object($result)) {
    $path->src = urldecode($path->src);
    $path->dst = urldecode($path->dst);
    db_query("UPDATE {url_alias} SET dst = '%s', src = '%s' WHERE pid = %d", $path->dst, $path->src, $path->pid);
  }
  return array();
}
function system_update_176() {
  $ret = array();
  $ret[] = update_sql('ALTER TABLE {filter_formats} ADD UNIQUE (name)');
  return $ret;
}
function system_update_177() {
  $ret = array();
  $message_ids = array(
    'welcome_subject' => 'Welcome subject',
    'welcome_body' => 'Welcome body text',
    'approval_subject' => 'Approval subject',
    'approval_body' => 'Approval body text',
    'pass_subject' => 'Password reset subject',
    'pass_body' => 'Password reset body text',
  );
  foreach ($message_ids as $message_id => $message_text) {
    if ($admin_setting = variable_get('user_mail_' . $message_id, FALSE)) {

      // Insert newlines and escape for display as HTML
      $admin_setting = nl2br(check_plain($message_text . "\n\n" . $admin_setting));
      watchdog('legacy', $admin_setting);
      $last = db_fetch_object(db_query('SELECT max(wid) AS wid FROM {watchdog}'));

      // Deleting is required, because _user_mail_text() checks for the existance of the variable.
      variable_del('user_mail_' . $message_id);
      $ret[] = array(
        'query' => strtr('The mail template %message_id has been reset to the default. The old template <a href="@url">has been saved</a>.', array(
          '%message_id' => 'user_mail_' . $message_id,
          '@url' => url('admin/logs/event/' . $last->wid),
        )),
        'success' => TRUE,
      );
    }
  }
  return $ret;
}
function _update_178_url_fix($text) {

  // Key is the attribute to replace.
  $urlpatterns['href'] = "/<a[^>]+href=\"([^\"]+)/i";
  $urlpatterns['src'] = "/<img[^>]+src=\"([^\"]+)/i";
  $old = $text;
  foreach ($urlpatterns as $type => $pattern) {
    if (preg_match_all($pattern, $text, $matches)) {
      foreach ($matches[1] as $url) {
        if ($url != '' && !strstr($url, 'mailto:') && !strstr($url, '://') && !strstr($url, '../') && !strstr($url, './') && $url[0] != '/' && $url[0] != '#') {
          $text = preg_replace('|' . $type . '\\s*=\\s*"' . preg_quote($url) . '\\s*"|', $type . '="' . base_path() . $url . '"', $text);
        }
      }
    }
  }
  return $text != $old ? $text : FALSE;
}
function _update_178_url_formats() {
  $formats = array();

  // Any format with the HTML filter in it
  $result = db_query("SELECT format FROM {filters} WHERE module = 'filter' AND delta = 0");
  while ($format = db_fetch_object($result)) {
    $formats[$format->format] = TRUE;
  }

  // Any format with only the linebreak filter in it
  $result = db_query("SELECT format FROM {filters} WHERE module = 'filter' AND delta = 2");
  while ($format = db_fetch_object($result)) {
    if (db_result(db_query('SELECT COUNT(*) FROM {filters} WHERE format = %d', $format->format)) == 1) {
      $formats[$format->format] = TRUE;
    }
  }

  // Any format with 'HTML' in its name
  $result = db_query("SELECT format FROM {filter_formats} WHERE name LIKE '%HTML%'");
  while ($format = db_fetch_object($result)) {
    $formats[$format->format] = TRUE;
  }
  return $formats;
}

/**
 * Update base paths for relative URLs in node and comment content.
 */
function system_update_178() {
  if (variable_get('clean_url', 0) == 1) {

    // Multi-part update
    if (!isset($_SESSION['system_update_178_comment'])) {

      // Check which formats need to be converted
      $formats = _update_178_url_formats();
      if (count($formats) == 0) {
        return array();
      }

      // Build format query string
      $_SESSION['formats'] = array_keys($formats);
      $_SESSION['format_string'] = '(' . substr(str_repeat('%d, ', count($formats)), 0, -2) . ')';

      // Begin update
      $_SESSION['system_update_178_comment'] = 0;
      $_SESSION['system_update_178_node'] = 0;
      $_SESSION['system_update_178_comment_max'] = db_result(db_query('SELECT MAX(cid) FROM {comments} WHERE format IN ' . $_SESSION['format_string'], $_SESSION['formats']));
      $_SESSION['system_update_178_node_max'] = db_result(db_query('SELECT MAX(vid) FROM {node_revisions} WHERE format IN ' . $_SESSION['format_string'], $_SESSION['formats']));
    }
    $limit = 20;

    // Comments
    if ($_SESSION['system_update_178_comment'] != $_SESSION['system_update_178_comment_max']) {
      $args = array_merge(array(
        $_SESSION['system_update_178_comment'],
      ), $_SESSION['formats']);
      $result = db_query_range("SELECT cid, comment FROM {comments} WHERE cid > %d AND format IN " . $_SESSION['format_string'] . ' ORDER BY cid ASC', $args, 0, $limit);
      while ($comment = db_fetch_object($result)) {
        $_SESSION['system_update_178_comment'] = $comment->cid;
        $comment->comment = _update_178_url_fix($comment->comment);
        if ($comment->comment !== FALSE) {
          db_query("UPDATE {comments} SET comment = '%s' WHERE cid = %d", $comment->comment, $comment->cid);
        }
      }
    }

    // Node revisions
    $args = array_merge(array(
      $_SESSION['system_update_178_node'],
    ), $_SESSION['formats']);
    $result = db_query_range("SELECT vid, teaser, body FROM {node_revisions} WHERE vid > %d AND format IN " . $_SESSION['format_string'] . ' ORDER BY vid ASC', $args, 0, $limit);
    while ($node = db_fetch_object($result)) {
      $_SESSION['system_update_178_node'] = $node->vid;
      $set = array();
      $args = array();
      $node->teaser = _update_178_url_fix($node->teaser);
      if ($node->teaser !== FALSE) {
        $set[] = "teaser = '%s'";
        $args[] = $node->teaser;
      }
      $node->body = _update_178_url_fix($node->body);
      if ($node->body !== FALSE) {
        $set[] = "body = '%s'";
        $args[] = $node->body;
      }
      if (count($set)) {
        $args[] = $node->vid;
        db_query('UPDATE {node_revisions} SET ' . implode(', ', $set) . ' WHERE vid = %d', $args);
      }
    }
    if ($_SESSION['system_update_178_comment'] == $_SESSION['system_update_178_comment_max'] && $_SESSION['system_update_178_node'] == $_SESSION['system_update_178_node_max']) {
      unset($_SESSION['system_update_178_comment']);
      unset($_SESSION['system_update_178_comment_max']);
      unset($_SESSION['system_update_178_node']);
      unset($_SESSION['system_update_178_node_max']);
      return array();
    }
    else {

      // Report percentage finished
      return array(
        '#finished' => ($_SESSION['system_update_178_comment'] + $_SESSION['system_update_178_node']) / ($_SESSION['system_update_178_comment_max'] + $_SESSION['system_update_178_node_max']),
      );
    }
  }
  return array();
}

/**
 * Update base paths for relative URLs in custom blocks, profiles and various variables.
 */
function system_update_179() {
  if (variable_get('clean_url', 0) == 1) {

    // Multi-part update
    if (!isset($_SESSION['system_update_179_uid'])) {

      // Check which formats need to be converted
      $formats = _update_178_url_formats();
      if (count($formats) == 0) {
        return array();
      }

      // Custom Blocks (too small for multipart)
      $format_string = '(' . substr(str_repeat('%d, ', count($formats)), 0, -2) . ')';
      $result = db_query("SELECT bid, body FROM {boxes} WHERE format IN " . $format_string, array_keys($formats));
      while ($block = db_fetch_object($result)) {
        $block->body = _update_178_url_fix($block->body);
        if ($block->body !== FALSE) {
          db_query("UPDATE {boxes} SET body = '%s' WHERE bid = %d", $block->body, $block->bid);
        }
      }

      // Variables (too small for multipart)
      $vars = array(
        'site_mission',
        'site_footer',
        'user_registration_help',
      );
      foreach (node_get_types() as $type => $name) {
        $vars[] = $type . '_help';
      }
      foreach ($vars as $var) {
        $value = variable_get($var, NULL);
        if (!is_null($value)) {
          $value = _update_178_url_fix($value);
          if ($value !== FALSE) {
            variable_set($var, $value);
          }
        }
      }

      // See if profiles need to be updated: is the default format HTML?
      if (!isset($formats[variable_get('filter_default_format', 1)])) {
        return array();
      }
      $result = db_query("SELECT fid FROM {profile_fields} WHERE type = 'textarea'");
      $fields = array();
      while ($field = db_fetch_object($result)) {
        $fields[] = $field->fid;
      }
      if (count($fields) == 0) {
        return array();
      }

      // Begin multi-part update for profiles
      $_SESSION['system_update_179_fields'] = $fields;
      $_SESSION['system_update_179_field_string'] = '(' . substr(str_repeat('%d, ', count($fields)), 0, -2) . ')';
      $_SESSION['system_update_179_uid'] = 0;
      $_SESSION['system_update_179_fid'] = 0;
      $_SESSION['system_update_179_max'] = db_result(db_query('SELECT MAX(uid) FROM {profile_values} WHERE fid IN ' . $_SESSION['system_update_179_field_string'], $_SESSION['system_update_179_fields']));
    }

    // Fetch next 20 profile values to convert
    $limit = 20;
    $args = array_merge(array(
      $_SESSION['system_update_179_uid'],
      $_SESSION['system_update_179_fid'],
      $_SESSION['system_update_179_uid'],
    ), $_SESSION['system_update_179_fields']);
    $result = db_query_range("SELECT fid, uid, value FROM {profile_values} WHERE ((uid = %d AND fid > %d) OR uid > %d) AND fid IN " . $_SESSION['system_update_179_field_string'] . ' ORDER BY uid ASC, fid ASC', $args, 0, $limit);
    while ($field = db_fetch_object($result)) {
      $_SESSION['system_update_179_uid'] = $field->uid;
      $_SESSION['system_update_179_fid'] = $field->fid;
      $field->value = _update_178_url_fix($field->value);
      if ($field->value !== FALSE) {
        db_query("UPDATE {profile_values} SET value = '%s' WHERE uid = %d AND fid = %d", $field->value, $field->uid, $field->fid);
      }
    }

    // Done?
    if (db_num_rows($result) == 0) {
      unset($_SESSION['system_update_179_uid']);
      unset($_SESSION['system_update_179_fid']);
      unset($_SESSION['system_update_179_max']);
      return array();
    }
    else {

      // Report percentage finished
      // (Note: make sure we complete all fields for the last user by not reporting 100% too early)
      return array(
        '#finished' => $_SESSION['system_update_179_uid'] / ($_SESSION['system_update_179_max'] + 1),
      );
    }
  }
  return array();
}
function system_update_180() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {node} DROP PRIMARY KEY");
      $ret[] = update_sql("ALTER TABLE {node} ADD PRIMARY KEY (nid, vid)");
      $ret[] = update_sql("ALTER TABLE {node} DROP INDEX vid");
      $ret[] = update_sql("ALTER TABLE {node} ADD UNIQUE (vid)");
      $ret[] = update_sql("ALTER TABLE {node} ADD INDEX (nid)");
      $ret[] = update_sql("ALTER TABLE {node_counter} CHANGE nid nid int NOT NULL DEFAULT '0'");
      break;
    case 'pgsql':
      $ret[] = update_sql("ALTER TABLE {node} DROP CONSTRAINT {node}_pkey");

      // Change PK
      $ret[] = update_sql("ALTER TABLE {node} ADD PRIMARY KEY (nid, vid)");
      $ret[] = update_sql('DROP INDEX {node}_vid_idx');

      // Change normal index to UNIQUE index
      $ret[] = update_sql('CREATE UNIQUE INDEX {node}_vid_idx ON {node}(vid)');
      $ret[] = update_sql('CREATE INDEX {node}_nid_idx ON {node}(nid)');

      // Add index on nid
      break;
  }
  return $ret;
}
function system_update_181() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {profile_fields} ADD autocomplete TINYint NOT NULL AFTER visibility");
      break;
    case 'pgsql':
      db_add_column($ret, 'profile_fields', 'autocomplete', 'smallint', array(
        'not null' => TRUE,
        'default' => 0,
      ));
      break;
  }
  return $ret;
}

/**
 * The lid field in pgSQL should not be UNIQUE, but an INDEX.
 */
function system_update_182() {
  $ret = array();
  if ($GLOBALS['db_type'] == 'pgsql') {
    $ret[] = update_sql('ALTER TABLE {locales_target} DROP CONSTRAINT {locales_target}_lid_key');
    $ret[] = update_sql('CREATE INDEX {locales_target}_lid_idx ON {locales_target} (lid)');
  }
  return $ret;
}

/**
 * @defgroup updates-4.7-to-5.0 System updates from 4.7 to 5.0
 * @{
 */
function system_update_1000() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("CREATE TABLE {blocks_roles} (\n      module varchar(64) NOT NULL,\n      delta varchar(32) NOT NULL,\n      rid int unsigned NOT NULL,\n      PRIMARY KEY (module, delta, rid)\n      ) /*!40100 DEFAULT CHARACTER SET utf8 */;");
      break;
    case 'pgsql':
      $ret[] = update_sql("CREATE TABLE {blocks_roles} (\n      module varchar(64) NOT NULL,\n      delta varchar(32) NOT NULL,\n      rid integer NOT NULL,\n      PRIMARY KEY (module, delta, rid)\n      );");
      break;
  }
  return $ret;
}
function system_update_1001() {

  // change DB schema for better poll support
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysqli':
    case 'mysql':

      // alter poll_votes table
      $ret[] = update_sql("ALTER TABLE {poll_votes} ADD COLUMN chorder int NOT NULL default -1 AFTER uid");
      break;
    case 'pgsql':
      db_add_column($ret, 'poll_votes', 'chorder', 'int', array(
        'not null' => TRUE,
        'default' => "'-1'",
      ));
      break;
  }
  return $ret;
}
function system_update_1002() {

  // Make the forum's vocabulary the highest in list, if present
  $ret = array();
  if ($vid = (int) variable_get('forum_nav_vocabulary', 0)) {
    $ret[] = update_sql('UPDATE {vocabulary} SET weight = -10 WHERE vid = ' . $vid);
  }
  return $ret;
}
function system_update_1003() {

  // Make use of guid in feed items
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {aggregator_item} ADD guid varchar(255) AFTER timestamp ;");
      break;
    case 'pgsql':
      db_add_column($ret, 'aggregator_item', 'guid', 'varchar(255)');
      break;
  }
  return $ret;
}
function system_update_1004() {

  // Increase the size of bid in boxes and aid in access
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {access} CHANGE `aid` `aid` int  NOT NULL AUTO_INCREMENT ");
      $ret[] = update_sql("ALTER TABLE {boxes} CHANGE `bid` `bid` int NOT NULL AUTO_INCREMENT ");
      break;
    case 'pgsql':

      // No database update required for PostgreSQL because it already uses big SERIAL numbers.
      break;
  }
  return $ret;
}
function system_update_1005() {

  // Add ability to create dynamic node types like the CCK module
  $ret = array();

  // The node_type table may already exist for anyone who ever used CCK in 4.7,
  // even if CCK is no longer installed. We need to make sure any previously
  // created table gets renamed before we create the new node_type table in
  // order to ensure that the new table gets created without errors.
  // TODO: This check should be removed for Drupal 6.
  if (db_table_exists('node_type')) {
    switch ($GLOBALS['db_type']) {
      case 'mysql':
      case 'mysqli':
        $ret[] = update_sql('RENAME TABLE {node_type} TO {node_type_content}');
        break;
      case 'pgsql':
        $ret[] = update_sql('ALTER TABLE {node_type} RENAME TO {node_type_content}');
        break;
    }
  }
  switch ($GLOBALS['db_type']) {
    case 'mysqli':
    case 'mysql':

      // Create node_type table
      $ret[] = update_sql("CREATE TABLE {node_type} (\n        type varchar(32) NOT NULL,\n        name varchar(255) NOT NULL,\n        module varchar(255) NOT NULL,\n        description mediumtext NOT NULL,\n        help mediumtext NOT NULL,\n        has_title tinyint unsigned NOT NULL,\n        title_label varchar(255) NOT NULL default '',\n        has_body tinyint unsigned NOT NULL,\n        body_label varchar(255) NOT NULL default '',\n        min_word_count smallint unsigned NOT NULL,\n        custom tinyint NOT NULL DEFAULT '0',\n        modified tinyint NOT NULL DEFAULT '0',\n        locked tinyint NOT NULL DEFAULT '0',\n        orig_type varchar(255) NOT NULL default '',\n        PRIMARY KEY (type)\n        ) /*!40100 DEFAULT CHARACTER SET utf8 */;");
      break;
    case 'pgsql':

      // add new unsigned types for pgsql
      $ret[] = update_sql("CREATE DOMAIN int_unsigned integer CHECK (VALUE >= 0)");
      $ret[] = update_sql("CREATE DOMAIN smallint_unsigned smallint CHECK (VALUE >= 0)");
      $ret[] = update_sql("CREATE DOMAIN bigint_unsigned bigint CHECK (VALUE >= 0)");
      $ret[] = update_sql("CREATE TABLE {node_type} (\n        type varchar(32) NOT NULL,\n        name varchar(255) NOT NULL,\n        module varchar(255) NOT NULL,\n        description text NOT NULL,\n        help text NOT NULL,\n        has_title smallint_unsigned NOT NULL,\n        title_label varchar(255) NOT NULL default '',\n        has_body smallint_unsigned NOT NULL,\n        body_label varchar(255) NOT NULL default '',\n        min_word_count smallint_unsigned NOT NULL,\n        custom smallint NOT NULL DEFAULT '0',\n        modified smallint NOT NULL DEFAULT '0',\n        locked smallint NOT NULL DEFAULT '0',\n        orig_type varchar(255) NOT NULL default '',\n        PRIMARY KEY (type)\n        );");
      break;
  }

  // Insert default user-defined node types into the database.
  $types = array(
    array(
      'type' => 'page',
      'name' => t('Page'),
      'module' => 'node',
      'description' => t('If you want to add a static page, like a contact page or an about page, use a page.'),
      'custom' => TRUE,
      'modified' => TRUE,
      'locked' => FALSE,
    ),
    array(
      'type' => 'story',
      'name' => t('Story'),
      'module' => 'node',
      'description' => t('Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extended by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles.'),
      'custom' => TRUE,
      'modified' => TRUE,
      'locked' => FALSE,
    ),
  );
  foreach ($types as $type) {
    $type = (object) _node_type_set_defaults($type);
    node_type_save($type);
  }
  cache_clear_all();
  system_modules();
  menu_rebuild();
  node_types_rebuild();

  // Migrate old values for 'minimum_x_size' variables to the node_type table.
  $query = db_query('SELECT type FROM {node_type}');
  while ($result = db_fetch_object($query)) {
    $variable_name = 'minimum_' . $result->type . '_size';
    if ($value = db_fetch_object(db_query("SELECT value FROM {variable} WHERE name = '%s'", $variable_name))) {
      $value = (int) unserialize($value->value);
      db_query("UPDATE {node_type} SET min_word_count = %d, modified = %d WHERE type = '%s'", $value, 1, $result->type);
      variable_del($variable_name);
    }
  }
  node_types_rebuild();
  return $ret;
}
function system_update_1006() {

  // Add a customizable title to all blocks.
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {blocks} ADD title VARCHAR(64) NOT NULL DEFAULT ''");
      break;
    case 'pgsql':
      db_add_column($ret, 'blocks', 'title', 'varchar(64)', array(
        'default' => "''",
        'not null' => TRUE,
      ));
      break;
  }

  // Migrate custom block titles to new column.
  $boxes = db_query('SELECT bid, title from {boxes}');
  while ($box = db_fetch_object($boxes)) {
    db_query("UPDATE {blocks} SET title = '%s' WHERE delta = %d and module = 'block'", $box->title, $box->bid);
  }
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql('ALTER TABLE {boxes} DROP title');
      break;
    case 'pgsql':
      $ret[] = update_sql('ALTER TABLE {boxes} DROP COLUMN title');
      break;
  }
  return $ret;
}
function system_update_1007() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {aggregator_item} ADD INDEX (fid)");
      break;
    case 'pgsql':
      $ret[] = update_sql("CREATE INDEX {aggregator_item}_fid_idx ON {aggregator_item} (fid)");
      break;
  }
  return $ret;
}

/**
 * Performance update for queries that are related to the locale.module
 */
function system_update_1008() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql('ALTER TABLE {locales_source} ADD KEY source (source(30))');
      break;
    case 'pgsql':
      $ret[] = update_sql("CREATE INDEX {locales_source}_source_idx on {locales_source} (source)");
  }
  return $ret;
}
function system_update_1010() {
  $ret = array();

  // Disable urlfilter.module, if it exists.
  if (module_exists('urlfilter')) {
    module_disable(array(
      'urlfilter',
    ));
    $ret[] = update_sql("UPDATE {filter_formats} SET module = 'filter', delta = 3 WHERE module = 'urlfilter'");
    $ret[] = t('URL Filter module was disabled; this functionality has now been added to core.');
  }
  return $ret;
}
function system_update_1011() {
  $ret = array();
  $ret[] = update_sql('UPDATE {menu} SET mid = 2 WHERE mid = 0');
  cache_clear_all();
  return $ret;
}
function system_update_1012() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {file_revisions} ADD INDEX(vid)");
      $ret[] = update_sql("ALTER TABLE {files} ADD INDEX(nid)");
      break;
    case 'pgsql':
      $ret[] = update_sql('CREATE INDEX {file_revisions}_vid_idx ON {file_revisions} (vid)');
      $ret[] = update_sql('CREATE INDEX {files}_nid_idx ON {files} (nid)');
      break;
  }
  return $ret;
}
function system_update_1013() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {sessions} CHANGE COLUMN sid sid varchar(64) NOT NULL default ''");
      break;
    case 'pgsql':
      db_change_column($ret, 'sessions', 'sid', 'sid', 'varchar(64)', array(
        'not null' => TRUE,
        'default' => "''",
      ));
      break;
  }
  return $ret;
}
function system_update_1014() {
  variable_del('cron_busy');
  return array();
}

/**
 * Add an index on watchdog type.
 */
function system_update_1015() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql('ALTER TABLE {watchdog} ADD INDEX (type)');
      break;
    case 'pgsql':
      $ret[] = update_sql('CREATE INDEX {watchdog}_type_idx ON {watchdog}(type)');
      break;
  }
  return $ret;
}

/**
 * Allow for longer URL encoded (%NN) UTF-8 characters in the location field of watchdog table.
 */
function system_update_1016() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {watchdog} CHANGE COLUMN location location text NOT NULL");
      break;
    case 'pgsql':
      db_change_column($ret, 'watchdog', 'location', 'location', 'text', array(
        'not null' => TRUE,
        'default' => "''",
      ));
      break;
  }
  return $ret;
}

/**
 * Allow role names to be up to 64 characters.
 */
function system_update_1017() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'pgsql':
      db_change_column($ret, 'role', 'name', 'name', 'varchar(64)', array(
        'not null' => TRUE,
        'default' => "''",
      ));
      break;
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql("ALTER TABLE {role} CHANGE name name varchar(64) NOT NULL default ''");
      break;
  }
  return $ret;
}

/**
 * Change break tag (was removed, see 1020).
 */
function system_update_1018() {
  variable_set('update_1020_ok', TRUE);
  return array();
}

/**
 * Change variable format for user-defined e-mails.
 */
function system_update_1019() {
  $message_ids = array(
    'welcome_subject',
    'welcome_body',
    'approval_subject',
    'approval_body',
    'pass_subject',
    'pass_body',
  );
  foreach ($message_ids as $id) {

    // Replace all %vars with !vars
    if ($message = variable_get('user_mail_' . $id, NULL)) {
      $fixed = preg_replace('/%([A-Za-z_-]+)/', '!\\1', $message);
      variable_set('user_mail_' . $id, $fixed);
    }
  }
  return array();
}

/**
 * Change break tag back (was removed from head).
 */
function system_update_1020() {
  $ret = array();
  if (!variable_get('update_1020_ok', FALSE)) {
    $ret[] = update_sql("UPDATE {node_revisions} SET body = REPLACE(body, '<break>', '<!--break-->')");
  }
  variable_del('update_1020_ok');
  return $ret;
}

/**
 * Update two more variables that were missing from system_update_1019.
 */
function system_update_1021() {
  $message_ids = array(
    'admin_body',
    'admin_subject',
  );
  foreach ($message_ids as $id) {

    // Replace all %vars with !vars
    if ($message = variable_get('user_mail_' . $id, NULL)) {
      $fixed = preg_replace('/%([A-Za-z_-]+)/', '!\\1', $message);
      variable_set('user_mail_' . $id, $fixed);
    }
  }
  return array();
}

/**
 * @} End of "defgroup updates-4.7-to-5.0"
 */

/**
 * @defgroup updates-5.x-extra Extra system updates for 5.x
 * @{
 */

/**
 * Add index on users created column.
 */
function system_update_1022() {
  $ret = array();
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      $ret[] = update_sql('ALTER TABLE {users} ADD KEY created (created)');
      break;
    case 'pgsql':
      $ret[] = update_sql("CREATE INDEX {users}_created_idx ON {users} (created)");
      break;
  }

  // Also appears as system_update_2004(). Ensure we don't update twice.
  variable_set('system_update_1022', TRUE);
  return $ret;
}

/**
 * @} End of "defgroup updates-5.x-extra"
 */

/**
 * @defgroup updates-5.0-to-x.x System updates from 5.0 to x.x
 * @{
 * @todo Start this series of updates at 2000.
 */

/**
 * @} End of "defgroup updates-5.0-to-x.x"
 * The next series of updates should start at 3000.
 */

Functions

Namesort descending Description
system_install Implementation of hook_install().
system_requirements Test and report Drupal installation requirements.
system_update_1000
system_update_1001
system_update_1002
system_update_1003
system_update_1004
system_update_1005
system_update_1006
system_update_1007
system_update_1008 Performance update for queries that are related to the locale.module
system_update_1010
system_update_1011
system_update_1012
system_update_1013
system_update_1014
system_update_1015 Add an index on watchdog type.
system_update_1016 Allow for longer URL encoded (%NN) UTF-8 characters in the location field of watchdog table.
system_update_1017 Allow role names to be up to 64 characters.
system_update_1018 Change break tag (was removed, see 1020).
system_update_1019 Change variable format for user-defined e-mails.
system_update_1020 Change break tag back (was removed from head).
system_update_1021 Update two more variables that were missing from system_update_1019.
system_update_1022 Add index on users created column.
system_update_110
system_update_111
system_update_112
system_update_113
system_update_114
system_update_115
system_update_116
system_update_117
system_update_118
system_update_119
system_update_120
system_update_121
system_update_122
system_update_123
system_update_124
system_update_125
system_update_126
system_update_127
system_update_128
system_update_129
system_update_130
system_update_131
system_update_132
system_update_133
system_update_134
system_update_135
system_update_136
system_update_137
system_update_138
system_update_139
system_update_140
system_update_141
system_update_142
system_update_143
system_update_144
system_update_145
system_update_146
system_update_147
system_update_148
system_update_149
system_update_150
system_update_151
system_update_152
system_update_153
system_update_154
system_update_155
system_update_156
system_update_157
system_update_158
system_update_159 Retrieve data out of the old_revisions table and put into new revision system.
system_update_160
system_update_161
system_update_162
system_update_163
system_update_164
system_update_165
system_update_166
system_update_167
system_update_168
system_update_169
system_update_170
system_update_171
system_update_172
system_update_173
system_update_174
system_update_175
system_update_176
system_update_177
system_update_178 Update base paths for relative URLs in node and comment content.
system_update_179 Update base paths for relative URLs in custom blocks, profiles and various variables.
system_update_180
system_update_181
system_update_182 The lid field in pgSQL should not be UNIQUE, but an INDEX.
_update_178_url_fix
_update_178_url_formats

Constants