Skip to content
Snippets Groups Projects
updates.inc 40.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • Dries Buytaert's avatar
    Dries Buytaert committed
    <?php
    /* $Id$ */
    
    // Define the various updates in an array("date : comment" => "function");
    $sql_updates = array(
      "2002-06-22: first update since Drupal 4.0.0 release" => "update_32",
      "2002-07-07" => "update_33",
      "2002-07-31" => "update_34",
      "2002-08-10" => "update_35",
      "2002-08-16" => "update_36",
      "2002-08-19" => "update_37",
      "2002-08-26" => "update_38",
      "2002-09-15" => "update_39",
      "2002-09-17" => "update_40",
      "2002-10-13" => "update_41",
      "2002-10-17" => "update_42",
      "2002-10-26" => "update_43",
      "2002-11-08" => "update_44",
      "2002-11-20" => "update_45",
      "2002-12-10: first update since Drupal 4.1.0 release" => "update_46",
      "2002-12-29" => "update_47",
      "2003-01-03" => "update_48",
      "2003-01-05" => "update_49",
      "2003-01-15" => "update_50",
      "2003-04-19" => "update_51",
      "2003-04-20" => "update_52",
      "2003-05-18" => "update_53",
      "2003-05-24" => "update_54",
      "2003-05-31" => "update_55",
      "2003-06-04" => "update_56",
      "2003-06-08" => "update_57",
      "2003-06-08: first update since Drupal 4.2.0 release" => "update_58",
      "2003-08-05" => "update_59",
      "2003-08-15" => "update_60",
      "2003-08-20" => "update_61",
      "2003-08-27" => "update_62",
      "2003-09-09" => "update_63",
      "2003-09-10" => "update_64",
      "2003-09-29" => "update_65",
      "2003-09-30" => "update_66",
      "2003-10-11" => "update_67",
      "2003-10-20" => "update_68",
      "2003-10-22" => "update_69",
      "2003-10-27" => "update_70",
      "2003-11-17: first update since Drupal 4.3.0 release" => "update_71",
      "2003-11-27" => "update_72",
      "2003-12-03" => "update_73",
      "2003-12-06" => "update_74",
      "2004-01-06" => "update_75",
      "2004-01-11" => "update_76",
      "2004-01-13" => "update_77",
      "2004-02-03" => "update_78",
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      "2004-02-21" => "update_79",
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      "2004-03-11: first update since Drupal 4.4.0 release" => "update_80",
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      "2004-02-20" => "update_81",
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      "2004-04-21" => "update_84",
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      "2004-04-27" => "update_85",
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      "2004-05-10" => "update_86",
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      "2004-05-18" => "update_87",
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      "2004-06-11" => "update_88",
      "2004-06-18" => "update_89"
    
    Dries Buytaert's avatar
    Dries Buytaert committed
    64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755
    );
    
    function update_32() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE users ADD index (sid(4))");
      $ret[] = update_sql("ALTER TABLE users ADD index (timestamp)");
      $ret[] = update_sql("ALTER TABLE users ADD UNIQUE KEY name (name)");
      return $ret;
    }
    
    function update_33() {
      $ret = array();
      $result = db_query("SELECT * FROM variable WHERE value NOT LIKE 's:%;'");
      // NOTE: the "WHERE"-part of the query above avoids variables to get serialized twice.
      while ($variable = db_fetch_object($result)) {
        variable_set($variable->name, $variable->value);
      }
      return $ret;
    }
    
    function update_34() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE feed MODIFY refresh int(10) NOT NULL default '0'");
      $ret[] = update_sql("ALTER TABLE feed MODIFY timestamp int (10) NOT NULL default '0'");
      $ret[] = update_sql("ALTER TABLE users CHANGE session session TEXT");
      return $ret;
    }
    
    function update_35() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE poll_choices ADD INDEX (nid)");
      return $ret;
    }
    
    function update_36() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE rating CHANGE old previous int(6) NOT NULL default '0'");
      $ret[] = update_sql("ALTER TABLE rating CHANGE new current int(6) NOT NULL default '0'");
      return $ret;
    }
    
    function update_37() {
      $ret = array();
    
      $ret[] = update_sql("DROP TABLE IF EXISTS sequences");
    
      $ret[] = update_sql("CREATE TABLE sequences (
        name VARCHAR(255) NOT NULL PRIMARY KEY,
        id INT UNSIGNED NOT NULL
      ) TYPE=MyISAM");
    
      if ($max = db_result(db_query("SELECT MAX(nid) FROM node"))) {
        $ret[] = update_sql("REPLACE INTO sequences VALUES ('node', $max)");
      }
    
      if ($max = db_result(db_query("SELECT MAX(cid) FROM comments"))) {
        $ret[] = update_sql("REPLACE INTO sequences VALUES ('comments', $max)");
      }
      // NOTE: move the comments bit down as soon as we switched to use the new comment module!
    
      if ($max = db_result(db_query("SELECT MAX(tid) FROM term_data"))) {
        $ret[] = update_sql("REPLACE INTO sequences VALUES ('term_data', $max)");
      }
      return $ret;
    }
    
    function update_38() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE watchdog CHANGE message message text NOT NULL default ''");
      return $ret;
    }
    
    function update_39() {
      $ret = array();
      $ret[] = update_sql("DROP TABLE moderate");
    
      $ret[] = update_sql("ALTER TABLE comments ADD score MEDIUMINT NOT NULL");
      $ret[] = update_sql("ALTER TABLE comments ADD status TINYINT UNSIGNED NOT NULL");
      $ret[] = update_sql("ALTER TABLE comments ADD users MEDIUMTEXT");
    
      $ret[] = update_sql("CREATE TABLE moderation_votes (
        mid INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
        vote VARCHAR(255),
        weight TINYINT NOT NULL
      )");
    
      $ret[] = update_sql("CREATE TABLE moderation_roles (
        rid INT UNSIGNED NOT NULL,
        mid INT UNSIGNED NOT NULL,
        value TINYINT NOT NULL
      )");
    
      $ret[] = update_sql("ALTER TABLE moderation_roles ADD INDEX (rid)");
      $ret[] = update_sql("ALTER TABLE moderation_roles ADD INDEX (mid)");
    
      $ret[] = update_sql("CREATE TABLE moderation_filters (
        fid INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
        filter VARCHAR(255) NOT NULL,
        minimum SMALLINT NOT NULL
      )");
    
      $ret[] = update_sql("DELETE FROM moderation_votes");
      $ret[] = update_sql("INSERT INTO moderation_votes VALUES (1, '+1', 0)");
      $ret[] = update_sql("INSERT INTO moderation_votes VALUES (2, '-1', 1)");
    
      $ret[] = update_sql("DELETE FROM moderation_roles");
      $ret[] = update_sql("INSERT INTO moderation_roles VALUES (2, 1, 1)");
      $ret[] = update_sql("INSERT INTO moderation_roles VALUES (2, 2, -1)");
    
      $ret[] = update_sql("CREATE TABLE forum (
        nid int unsigned not null primary key,
        icon varchar(255) not null,
        shadow int unsigned not null
      )");
      return $ret;
    }
    
    function update_40() {
      $ret = array();
      if ($max = db_result(db_query("SELECT MAX(cid) FROM comments"))) {
        $ret[] = update_sql("REPLACE INTO sequences VALUES ('comments', $max)");
      }
      return $ret;
    }
    
    function update_41() {
      $ret = array();
      $ret[] = update_sql("CREATE TABLE statistics (
        nid int(11) NOT NULL,
        totalcount bigint UNSIGNED DEFAULT '0' NOT NULL,
        daycount mediumint UNSIGNED DEFAULT '0' NOT NULL,
        timestamp int(11) UNSIGNED DEFAULT '0' NOT NULL,
        PRIMARY KEY (nid),
        INDEX (totalcount),
        INDEX (daycount),
        INDEX (timestamp)
      )");
    
      $ret[] = update_sql("CREATE TABLE accesslog (
        nid int(11) UNSIGNED DEFAULT '0',
        url varchar(255),
        hostname varchar(128),
        uid int(10) UNSIGNED DEFAULT '0',
        timestamp int(11) UNSIGNED NOT NULL
      )");
      return $ret;
    }
    
    function update_42() {
      $ret = array();
      $ret[] = update_sql("DROP TABLE modules");
      $ret[] = update_sql("DROP TABLE layout");
      $ret[] = update_sql("DROP TABLE referrer");
      return $ret;
    }
    
    function update_43() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE blocks DROP remove");
      $ret[] = update_sql("ALTER TABLE blocks DROP name");
      $ret[] = update_sql("UPDATE boxes SET type = 0 WHERE type = 1");
      $ret[] = update_sql("UPDATE boxes SET type = 1 WHERE type = 2");
      return $ret;
    }
    
    function update_44() {
      $ret = array();
      $ret[] = update_sql("UPDATE system SET filename = CONCAT('modules/', filename) WHERE type = 'module'");
      return $ret;
    }
    
    function update_45() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE page ADD description varchar(128) NOT NULL default ''");
      return $ret;
    }
    
    function update_46() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("ALTER TABLE cache ADD created integer");
      }
      else {
        $ret[] = update_sql("ALTER TABLE cache ADD created int(11) NOT NULL default '0'");
      }
      return $ret;
    }
    
    function update_47() {
      $ret = array();
      if ($max = db_result(db_query("SELECT MAX(vid) FROM vocabulary"))) {
        $ret[] = update_sql("REPLACE INTO sequences VALUES ('vocabulary', $max)");
      }
      return $ret;
    }
    
    function update_48() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE watchdog ADD link varchar(255) DEFAULT '' NULL");
      return $ret;
    }
    
    function update_49() {
      $ret = array();
      /*
      ** Make sure the admin module is added to the system table or the
      ** admin menus won't show up.
      */
    
      $ret[] = update_sql("DELETE FROM system WHERE name = 'admin';");
      $ret[] = update_sql("INSERT INTO system VALUES ('modules/admin.module','admin','module','',1)");
      return $ret;
    }
    
    function update_50() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE forum ADD tid INT UNSIGNED NOT NULL");
      $result = db_queryd("SELECT n.nid, t.tid FROM node n, term_node t WHERE n.nid = t.nid AND type = 'forum'");
      while ($node = db_fetch_object($result)) {
        db_queryd("UPDATE forum SET tid = %d WHERE nid = %d", $node->tid, $node->nid);
      }
      $ret[] = update_sql("ALTER TABLE forum ADD INDEX (tid)");
      return $ret;
    }
    
    function update_51() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE blocks CHANGE delta delta varchar(32) NOT NULL default '0'");
      return $ret;
    }
    
    function update_52() {
      $ret = array();
      $ret[] = update_sql("UPDATE sequences SET name = 'comments_cid' WHERE name = 'comments';");
      $ret[] = update_sql("UPDATE sequences SET name = 'node_nid' WHERE name = 'node';");
    
      $ret[] = update_sql("DELETE FROM sequences WHERE name = 'import'");
      $ret[] = update_sql("DELETE FROM sequences WHERE name = 'bundle_bid'");  // in case we would run this entry twice
      $ret[] = update_sql("DELETE FROM sequences WHERE name = 'feed_fid'");    // in case we would run this entry twice
    
      $bundles = db_result(db_query("SELECT MAX(bid) FROM bundle;"));
      $ret[] = update_sql("INSERT INTO sequences (name, id) VALUES ('bundle_bid', '$bundles')");
    
      $feeds = db_result(db_query("SELECT MAX(fid) FROM feed;"));
      $ret[] = update_sql("INSERT INTO sequences (name, id) VALUES ('feed_fid', '$feeds')");
    
      $ret[] = update_sql("UPDATE sequences SET name = 'vocabulary_vid' WHERE name = 'vocabulary';");
    
      $ret[] = update_sql("UPDATE sequences SET name = 'term_data_tid' WHERE name = 'term_data'");
      return $ret;
    }
    
    function update_53() {
      $ret = array();
      $ret[] = update_sql("CREATE INDEX book_parent ON book(parent);");
      return $ret;
    }
    
    function update_54() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE locales CHANGE string string BLOB DEFAULT '' NOT NULL");
      return $ret;
    }
    
    function update_55() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE site ADD checked INT(11) NOT NULL;");
      $ret[] = update_sql("ALTER TABLE site CHANGE timestamp changed INT(11) NOT NULL;");
      return $ret;
    }
    
    function update_56() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE vocabulary CHANGE types nodes TEXT DEFAULT '' NOT NULL");
      return $ret;
    }
    
    function update_57() {
      $ret = array();
      $ret[] = update_sql("DELETE FROM variable WHERE name = 'site_charset'");
      return $ret;
    }
    
    function update_58() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("ALTER TABLE {node} ADD path varchar(250) NULL");
        $ret[] = update_sql("ALTER TABLE {node} ALTER COLUMN path SET DEFAULT ''");
      }
      else {
        $ret[] = update_sql("ALTER TABLE {node} ADD path varchar(250) NULL default ''");
      }
      return $ret;
    }
    
    function update_59() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("ALTER TABLE {comments} ADD thread VARCHAR(255)");
        $ret[] = update_sql("ALTER TABLE {comments} ALTER COLUMN thread SET NOT NULL");
      }
      else {
        $ret[] = update_sql("ALTER TABLE {comments} ADD thread VARCHAR(255) NOT NULL");
      }
    
      $result = db_query("SELECT DISTINCT(nid) FROM {comments} WHERE thread = ''");
    
      while ($node = db_fetch_object($result)) {
        $result2 = db_query("SELECT cid, pid FROM {comments} where nid = '%d' ORDER BY timestamp", $node->nid);
        $comments = array();
        while ($comment = db_fetch_object($result2)) {
          $comments[$comment->cid] = $comment;
        }
    
        $structure = array();
        $structure = _update_thread_structure($comments, 0, -1, $structure);
    
        foreach ($structure as $cid => $thread) {
          $new_parts = array();
          foreach(explode(".", $thread) as $part) {
            if ($part > 9) {
              $start = substr($part, 0, strlen($part) - 1);
              $end = substr($part, -1, 1);
    
              $new_parts[] = str_repeat("9", $start).$end;
            }
            else {
              $new_parts[] = $part;
            }
          }
          $thread = implode(".", $new_parts);
    
          db_query("UPDATE {comments} SET thread = '%s' WHERE cid = '%d'", $thread."/", $comments[$cid]->cid);
        }
      }
      return $ret;
    }
    
    function _update_thread_structure($comments, $pid, $depth, $structure) {
      $ret = array();
      $depth++;
    
      foreach ($comments as $key => $comment) {
        if ($comment->pid == $pid) {
          if ($structure[$comment->pid]) {
            $structure[$comment->cid] = $structure[$comment->pid]."."._update_next_thread($structure, $structure[$comment->pid]);
          }
          else {
            $structure[$comment->cid] = _update_next_thread($structure, "");
          }
    
          $structure = _update_thread_structure($comments, $comment->cid, $depth, $structure);
        }
      }
    
      return $structure;
      return $ret;
    }
    
    function update_60() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE {forum} DROP icon");
      return $ret;
    }
    
    function update_61() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("CREATE TABLE {sessions} (
          uid integer NOT NULL,
          sid varchar(32) NOT NULL default '',
          hostname varchar(128) NOT NULL default '',
          timestamp integer NOT NULL default '0',
          session text,
          PRIMARY KEY (sid)
         );");
    
        $ret[] = update_sql("ALTER TABLE {users} DROP session;");
        $ret[] = update_sql("ALTER TABLE {users} DROP hostname;");
        $ret[] = update_sql("ALTER TABLE {users} DROP sid;");
    
      }
      else {
        $ret[] = update_sql("CREATE TABLE IF NOT EXISTS {sessions} (
          uid int(10) unsigned NOT NULL,
          sid varchar(32) NOT NULL default '',
          hostname varchar(128) NOT NULL default '',
          timestamp int(11) NOT NULL default '0',
          session text,
          KEY uid (uid),
          KEY sid (sid(4)),
          KEY timestamp (timestamp)
        )");
    
        $ret[] = update_sql("ALTER TABLE {users} DROP session;");
        $ret[] = update_sql("ALTER TABLE {users} DROP hostname;");
        $ret[] = update_sql("ALTER TABLE {users} DROP sid;");
      }
      return $ret;
    }
    
    function update_62() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("CREATE INDEX accesslog_timestamp ON {accesslog} (timestamp)");
    
        $ret[] = update_sql("DROP INDEX node_type_idx");
        $ret[] = update_sql("DROP INDEX node_title_idx");
        $ret[] = update_sql("DROP INDEX node_promote_idx");
    
        $ret[] = update_sql("CREATE INDEX node_type ON {node} (type)");
        $ret[] = update_sql("CREATE INDEX node_title_type ON {node} (title,type)");
        $ret[] = update_sql("CREATE INDEX node_moderate ON {node} (moderate)");
        $ret[] = update_sql("CREATE INDEX node_path ON {node} (path)");
        $ret[] = update_sql("CREATE INDEX node_promote_status ON {node} (promote, status)");
    
      }
      else {
        $ret[] = update_sql("ALTER TABLE {accesslog} ADD INDEX accesslog_timestamp (timestamp)");
    
        $ret[] = update_sql("ALTER TABLE {node} DROP INDEX type");
        $ret[] = update_sql("ALTER TABLE {node} DROP INDEX title");
        $ret[] = update_sql("ALTER TABLE {node} DROP INDEX promote");
    
        $ret[] = update_sql("ALTER TABLE {node} ADD INDEX node_type (type(4))");
        $ret[] = update_sql("ALTER TABLE {node} ADD INDEX node_title_type (title,type(4))");
        $ret[] = update_sql("ALTER TABLE {node} ADD INDEX node_moderate (moderate)");
        $ret[] = update_sql("ALTER TABLE {node} ADD INDEX node_path (path(5))");
        $ret[] = update_sql("ALTER TABLE {node} ADD INDEX node_promote_status (promote, status)");
      }
      return $ret;
    }
    
    function _update_next_thread($structure, $parent) {
      $ret = array();
      do {
        $val++;
        if ($parent) {
          $thread = "$parent.$val";
        }
        else {
          $thread = $val;
        }
    
      } while (array_search($thread, $structure));
    
      return $val;
      return $ret;
    }
    
    function update_63() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("INSERT INTO {users} (uid, name, mail, timestamp) VALUES ('0', '', '', '". time() ."')");
      }
      else {
        $ret[] = update_sql("ALTER TABLE {users} CHANGE uid uid int(10) unsigned NOT NULL default '0'");
        $ret[] = update_sql("INSERT INTO {users} (uid, name, mail, timestamp) VALUES ('0', '', '', '". time() ."')");
        $users = db_result(db_query("SELECT MAX(uid) FROM {users};"));
        $ret[] = update_sql("INSERT INTO {sequences} (name, id) VALUES ('users_uid', '$users')");
      }
      return $ret;
    }
    
    function update_64() {
      $ret = array();
      $ret[] = update_sql("UPDATE {users} SET rid = 1 WHERE uid = 0");
      return $ret;
    }
    
    function update_65() {
      $ret = array();
      // PostgreSQL-only update.
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("CREATE FUNCTION \"rand\"() RETURNS float AS '
          BEGIN
            RETURN random();
          END;' LANGUAGE 'plpgsql'");
      }
      return $ret;
    }
    
    function update_66() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("CREATE TABLE {path} (
          pid serial,
          src varchar(128) NOT NULL default '',
          dst varchar(128) NOT NULL default '',
          PRIMARY KEY  (pid)
        )");
        $ret[] = update_sql("CREATE INDEX path_src_idx ON {path}(src)");
        $ret[] = update_sql("CREATE INDEX path_dst_idx ON {path}(dst)");
        $result = db_query("SELECT nid, path FROM {node} WHERE path != ''");
        while ($node = db_fetch_object($result)) {
          $ret[] = update_sql("INSERT INTO {path} (src, dst) VALUES ('node/view/$node->nid', '". check_query($node->path) ."')");
        }
      }
      else {
        $ret[] = update_sql("CREATE TABLE {path} (
          pid int(10) unsigned NOT NULL auto_increment,
          src varchar(128) NOT NULL default '',
          dst varchar(128) NOT NULL default '',
          PRIMARY KEY  (pid),
          UNIQUE KEY src (src),
          UNIQUE KEY dst (dst)
        )");
        // Migrate the existing paths:
        $result = db_query("SELECT nid, path FROM {node} WHERE path != ''");
        while ($node = db_fetch_object($result)) {
          $ret[] = update_sql("INSERT INTO {path} (src, dst) VALUES ('node/view/$node->nid', '". check_query($node->path) ."')");
        }
    
        $ret[] = update_sql("ALTER TABLE {node} DROP path");
      }
      return $ret;
    }
    
    function update_67() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        // Taking no action.  PostgreSQL is not always capable of dropping columns.
      }
      else {
        $ret[] = update_sql("ALTER TABLE {users} DROP homepage");
      }
      return $ret;
    }
    
    function update_68() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        // Unneccesary. The PostgreSQL port was already using a sequence.
      }
      else {
        $max = db_result(db_query("SELECT MAX(aid) FROM {access};"));
        $ret[] = update_sql("INSERT INTO {sequences} (name, id) VALUES ('access_aid', '$max')");
        $ret[] = update_sql("ALTER TABLE {access} CHANGE aid aid tinyint(10) NOT NULL ");
      }
      return $ret;
    }
    
    function update_69() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        /* Rename the statistics table to node_counter */
        $ret[] = update_sql("ALTER TABLE {statistics} RENAME TO {node_counter}");
        $ret[] = update_sql("DROP INDEX  {statistics}_totalcount_idx");
        $ret[] = update_sql("DROP INDEX  {statistics}_daycount_idx");
        $ret[] = update_sql("DROP INDEX  {statistics}_timestamp_idx");
        $ret[] = update_sql("CREATE INDEX {node_counter}_totalcount_idx ON {node_counter}(totalcount)");
        $ret[] = update_sql("CREATE INDEX {node_counter}_daycount_idx ON {node_counter}(daycount)");
        $ret[] = update_sql("CREATE INDEX {node_counter}_timestamp_idx ON {node_counter}(timestamp)");
    
        /* Rename the path table to url_alias */
        $ret[] = update_sql("ALTER TABLE {path} RENAME TO {url_alias}");
        $ret[] = update_sql("ALTER TABLE {path}_pid_seq RENAME TO {url_alias}_pid_seq");
      }
      else {
        $ret[] = update_sql("ALTER TABLE {statistics} RENAME TO {node_counter}");
        $ret[] = update_sql("ALTER TABLE {path} RENAME TO {url_alias}");
        $ret[] = update_sql("UPDATE {sequences} SET name = '{url_alias}_pid' WHERE name = '{path}_pid'");
      }
    
      $ret[] = update_sql("UPDATE {users} SET name = '' WHERE uid = 0;");
      return $ret;
    }
    
    function update_70() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE {variable} CHANGE name name varchar(48) NOT NULL");
      return $ret;
    }
    
    function update_71() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("ALTER TABLE {system} ADD bootstrap integer");
      }
      else {
        $ret[] = update_sql("ALTER TABLE {system} ADD bootstrap int(2)");
      }
      return $ret;
    }
    
    function update_72() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("ALTER TABLE {blocks} ADD throttle smallint");
        $ret[] = update_sql("ALTER TABLE {blocks} ALTER COLUMN throttle SET DEFAULT '0'");
        $ret[] = update_sql("UPDATE {blocks} SET throttle = 0");
        $ret[] = update_sql("ALTER TABLE {blocks} ALTER COLUMN throttle SET NOT NULL");
      }
      else {
        $ret[] = update_sql("ALTER TABLE {blocks} ADD throttle tinyint(1) NOT NULL DEFAULT '0'");
      }
      return $ret;
    }
    
    function update_73() {
      $ret = array();
      /* MySQL only update */
      if ($GLOBALS["db_type"] == "mysql") {
        $ret[] = update_sql("ALTER TABLE {book} CHANGE log log longtext");
        $ret[] = update_sql("ALTER TABLE {boxes} CHANGE body body longtext");
        $ret[] = update_sql("ALTER TABLE {cache} CHANGE data data longtext");
        $ret[] = update_sql("ALTER TABLE {comments} CHANGE comment comment longtext");
        $ret[] = update_sql("ALTER TABLE {comments} CHANGE users users longtext");
        $ret[] = update_sql("ALTER TABLE {directory} CHANGE slogan slogan longtext");
        $ret[] = update_sql("ALTER TABLE {directory} CHANGE mission mission longtext");
        $ret[] = update_sql("ALTER TABLE {feed} CHANGE description description longtext");
        $ret[] = update_sql("ALTER TABLE {item} CHANGE description description longtext");
        $ret[] = update_sql("ALTER TABLE {node} CHANGE users users longtext");
        $ret[] = update_sql("ALTER TABLE {node} CHANGE teaser teaser longtext");
        $ret[] = update_sql("ALTER TABLE {node} CHANGE body body longtext");
        $ret[] = update_sql("ALTER TABLE {node} CHANGE revisions revisions longtext");
        $ret[] = update_sql("ALTER TABLE {permission} CHANGE perm perm longtext");
        $ret[] = update_sql("ALTER TABLE {poll} CHANGE voters voters longtext");
        $ret[] = update_sql("ALTER TABLE {sessions} CHANGE session session longtext");
        $ret[] = update_sql("ALTER TABLE {term_data} CHANGE description description longtext");
        $ret[] = update_sql("ALTER TABLE {users} CHANGE data data longtext");
        $ret[] = update_sql("ALTER TABLE {variable} CHANGE value value longtext");
        $ret[] = update_sql("ALTER TABLE {vocabulary} CHANGE description description longtext");
        $ret[] = update_sql("ALTER TABLE {vocabulary} CHANGE nodes nodes longtext");
        $ret[] = update_sql("ALTER TABLE {watchdog} CHANGE message message longtext");
      }
      return $ret;
    }
    
    function update_74() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("ALTER TABLE {system} ADD throttle smallint");
        $ret[] = update_sql("ALTER TABLE {system} ALTER COLUMN throttle SET DEFAULT '0'");
        $ret[] = update_sql("UPDATE {system} SET throttle = 0");
        $ret[] = update_sql("ALTER TABLE {system} ALTER COLUMN throttle SET NOT NULL");
      }
      else {
        $ret[] = update_sql("ALTER TABLE {system} ADD throttle tinyint(1) NOT NULL DEFAULT '0'");
      }
      return $ret;
    }
    
    function update_75() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("ALTER TABLE {feed} ADD etag text");
        $ret[] = update_sql("ALTER TABLE {feed} ALTER COLUMN etag SET DEFAULT ''");
        $ret[] = update_sql("ALTER TABLE {feed} ALTER COLUMN etag SET NOT NULL");
    
        $ret[] = update_sql("ALTER TABLE {feed} ADD modified integer");
        $ret[] = update_sql("ALTER TABLE {feed} ALTER COLUMN modified SET DEFAULT '0'");
        $ret[] = update_sql("UPDATE {feed} SET modified = 0");
        $ret[] = update_sql("ALTER TABLE {feed} ALTER COLUMN modified SET NOT NULL");
    
        $ret[] = update_sql("ALTER TABLE {feed} RENAME timestamp TO checked");
    
        $ret[] = update_sql("UPDATE {blocks} SET module = 'aggregator' WHERE module = 'import'");
        $ret[] = update_sql("UPDATE {system} SET filename = 'modules/aggregator.module', name = 'aggregator' WHERE filename = 'modules/import.module'");
      }
      else {
        $ret[] = update_sql("ALTER TABLE {feed} ADD etag varchar(255) NOT NULL DEFAULT ''");
        $ret[] = update_sql("ALTER TABLE {feed} ADD modified int(10) NOT NULL DEFAULT 0");
        $ret[] = update_sql("ALTER TABLE {feed} CHANGE timestamp checked int(10) NOT NULL DEFAULT 0");
        $ret[] = update_sql("UPDATE {blocks} SET module = 'aggregator' WHERE module = 'import'");
        $ret[] = update_sql("UPDATE {system} SET filename = 'modules/aggregator.module', name = 'aggregator' WHERE filename = 'modules/import.module'");
      }
      return $ret;
    }
    
    function update_76() {
      $ret = array();
      if ($GLOBALS["db_type"] == "pgsql") {
        $ret[] = update_sql("ALTER TABLE {feed} ADD image text");
      } else {
        $ret[] = update_sql("ALTER TABLE {feed} ADD image longtext");
      }
      return $ret;
    }
    
    function update_77() {
      $ret = array();
      $ret[] = update_sql("ALTER TABLE {cache} ADD headers text");
      return $ret;
    }
    
    function update_78() {
      $ret = array();
      if ($GLOBALS["db_type"] == "mysql") {
        $ret[] = update_sql("CREATE TABLE {filters} (
          module varchar(64) NOT NULL default '',
          weight tinyint(2) DEFAULT '0' NOT NULL,
    
    Dries Buytaert's avatar
    Dries Buytaert committed
        )");
      }
      else {
    
        $ret[] = update_sql("CREATE TABLE {filters} (
          module varchar(64) NOT NULL DEFAULT '',
          weight smallint NOT NULL DEFAULT 0
          );");
        $ret[] = update_sql("CREATE INDEX {filters_weight} ON {filters} (weight);");
    
    Dries Buytaert's avatar
    Dries Buytaert committed
      }
      return $ret;
    }
    
    function update_79() {
      $ret = array();
      // Works for both mysql and postgresql
      $ret[] = update_sql("ALTER TABLE {node} DROP attributes");
      $ret[] = update_sql("ALTER TABLE {comments} DROP link");
      return $ret;
    }
    
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
    function update_80() {
    
    
    
    
      if ($GLOBALS["db_type"] == "mysql") {
        // Add a 'created' field to the users table:
        $ret[] = update_sql('ALTER TABLE {users} ADD created INT(11) NOT NULL');
        $ret[] = update_sql('ALTER TABLE {users} CHANGE timestamp changed INT(11) NOT NULL');
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
    
    
    
    
        // Add profile module related tables:
        $ret[] = update_sql("CREATE TABLE {profile_fields} (
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
        fid int(10) NOT NULL auto_increment,
        title varchar(255) default NULL,
        name varchar(128) default NULL,
        explanation TEXT default NULL,
        category varchar(255) default NULL,
        type varchar(128) default NULL,
        weight tinyint(1) DEFAULT '0' NOT NULL,
        overview tinyint(1) DEFAULT '0' NOT NULL,
        options text,
        KEY category (category),
        UNIQUE KEY name (name),
        PRIMARY KEY (fid)
       );");
    
    
        $ret[] = update_sql("CREATE TABLE {profile_values} (
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
        fid int(11) unsigned default '0',
        uid int(11) unsigned default '0',
        value text,
        KEY uid (uid),
        KEY fid (fid)
       );");
    
        // Add some indices to speed up the update process:
        $ret[] = update_sql('ALTER TABLE {comments} ADD index (timestamp)');
        $ret[] = update_sql('ALTER TABLE {node} ADD index (created)');
        // Assign everyone a created timestamp to begin with:
        $ret[] = update_sql("UPDATE {users} SET created = changed WHERE created = ''");
    
       }
      else {// pgsql
    
        $ret[] = update_sql('ALTER TABLE {users} RENAME timestamp TO changed');
        $ret[] = update_sql('ALTER TABLE {users} ADD created integer');
        $ret[] = update_sql('UPDATE {users} SET created = 0');
        $ret[] = update_sql('ALTER TABLE {users} ALTER COLUMN created SET NOT NULL');
        $ret[] = update_sql('ALTER TABLE {users} ALTER COLUMN created SET DEFAULT 0');
        // Add profile module related tables:
        $ret[] = update_sql("CREATE TABLE {profile_fields} (
        fid serial,
        title varchar(255) default NULL,
        name varchar(128) default NULL,
        explanation TEXT default NULL,
        category varchar(255) default NULL,
        type varchar(128) default NULL,
        weight smallint DEFAULT '0' NOT NULL,
        overview smallint DEFAULT '0' NOT NULL,
        options text,
        UNIQUE (name),
        PRIMARY KEY (fid)
      );");
        $ret[] = update_sql("CREATE INDEX profile_fields_category ON {profile_fields} (category);");
        $ret[] = update_sql("CREATE TABLE {profile_values} (
        fid integer default '0',
        uid integer default '0',
        value text
      );");
        $ret[] = update_sql("CREATE INDEX profile_values_uid ON profile_values (uid);");
        $ret[] = update_sql("CREATE INDEX profile_values_fid ON profile_values (fid);");
    
      // Add some indices to speed up the update process:
        $ret[] = update_sql('CREATE INDEX comments_timestamp ON {comments} (timestamp)');
        $ret[] = update_sql('CREATE INDEX node_created on {node} (created)');
        // Assign everyone a created timestamp to begin with:
        $ret[] = update_sql("UPDATE {users} SET created = changed WHERE created = 0");
    
      }
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
    
    
    
      // Print a status message:"
      print '<p>Note: this might take a while ...</p>';
    
      // Try updating the user records using the comment table:
      $result = db_query('SELECT DISTINCT(u.uid) FROM {comments} c LEFT JOIN {users} u ON c.uid = u.uid WHERE c.timestamp < u.created');
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      while ($account = db_fetch_object($result)) {
    
        // Retrieve the proper timestamp:
        $timestamp = db_result(db_query('SELECT MIN(timestamp) FROM {comments} WHERE uid = %d', $account->uid));
        // Try updating the user records using the node table:
        $result = db_query('SELECT DISTINCT(u.uid) FROM {node} n LEFT JOIN {users} u ON n.uid = u.uid WHERE n.created < u.created');
        while ($account = db_fetch_object($result)) {
          // Retrieve the proper timestamp:
          $timestamp = db_result(db_query('SELECT MIN(created) FROM {node} WHERE uid = %d', $account->uid));
    
          // Update this user record as well as older records with an older timestamp:
          db_query('UPDATE {users} SET created = %d WHERE created > %d AND uid <= %d', $timestamp, $timestamp, $account->uid);
        }
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
    
    
          // Update this user record as well as older records with an older timestamp:
          db_query('UPDATE {users} SET created = %d WHERE created > %d AND uid <= %d', $timestamp, $timestamp, $account->uid);
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
        }
    
    
    
       // Migrate the old profile data to the new scheme:
        $fields = array(
            array("Name", "realname", "textfield", NULL, 0),
            array("Address", "address", "textfield", NULL, 0),
            array("City", "city", "textfield", NULL, 0),
            array("State, province or region", "state", "textfield", NULL, 0),
            array("Zip or postal code", "zip", "textfield", NULL, 0),
            array("Country", "country", "textfield", NULL, 1),
            array("Gender", "gender", "selection", "male\nfemale", 1),
            array("Job title", "job", "textfield", NULL, 0),
            array("ICQ messenger ID", "icq", "textfield", NULL, 0),
            array("MSN messenger ID", "msn", "textfield", NULL, 0),
            array("Yahoo messenger ID", "yahoo", "textfield", NULL, 0),
            array("AIM messenger ID", "aim", "textfield", NULL, 0),
            array("URL of homepage", "homepage", "url", NULL, 1),
            array("Biography", "biography", "textarea", NULL, 0),
            array("Interests", "interests", "textarea", NULL, 0),
            array("Public key", "publickey", "textarea", NULL, 0)
            );
    
        // Remove existing data (debug mode):
        db_query('DELETE FROM {profile_fields}');
        db_query('DELETE FROM {profile_values}');
    
        foreach ($fields as $field) {
          db_query("INSERT INTO {profile_fields} (title, name, type, category, options, overview) VALUES ('%s', '%s', '%s', 'Personal information', '%s', %d)", $field[0], $field[1], $field[2], $field[3], $field[4]);
        }
        if ($GLOBALS["db_type"] == "mysql") {
    
          db_query("ALTER TABLE {users} ADD picture varchar(255) NOT NULL DEFAULT ''");
        }
        else {
          db_query("ALTER TABLE {users} ADD picture varchar(255)");
          db_query("UPDATE {users} SET picture = ''");
          db_query("ALTER TABLE {users} ALTER COLUMN picture SET NOT NULL");
          db_query("ALTER TABLE {users} ALTER COLUMN picture SET DEFAULT ''");
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
        }
    
    
        $result = db_query("SELECT uid FROM {users}");
        while ($account = db_fetch_object($result)) {
          // Load the user record:
          $account = user_load(array('uid' => $account->uid));
          $edit = array();
    
          // Modify the user record:
          foreach ($fields as $field) {
      $old = "profile_". $field[1];
      $new = $field[1];
      if ($account->$old) {
        $edit[$new] = $account->$old;
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      }
    
      unset($account->$old);
          }
    
          // Gender specific changes:
          if ($edit['gender'] == 'f') $edit['gender'] = 'female';
          if ($edit['gender'] == 'm') $edit['gender'] = 'male';
    
          // Avatar specific changes:
          if ($account->profile_avatar) {
      $edit['picture'] = $account->profile_avatar;
          }
          unset($account->profile_avatar);
    
          // Save the update record:
          user_save($account, $edit);
        }
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      return $ret;
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
    }
    
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
    function update_81() {
    
      if ($GLOBALS['db_type'] == 'mysql') {
        $ret[] = update_sql('ALTER TABLE {profile_fields} ADD page varchar(255) default NULL');
      }
      else {
        $ret[] = update_sql('ALTER TABLE {profile_fields} ADD page varchar(255)');
        $ret[] = update_sql('ALTER TABLE {profile_fields} ALTER COLUMN page SET default NULL');
      }
    
      $ret[] = update_sql("UPDATE {profile_fields} SET type = 'url' WHERE name = 'homepage'");
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      return $ret;
    }
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
    function update_82() {
    
      if ($GLOBALS['db_type'] == 'mysql') {
        $ret[] = update_sql("ALTER TABLE {profile_fields} ADD required tinyint(1) DEFAULT '0' NOT NULL");
      }
      else {
        $ret[] = update_sql("ALTER TABLE {profile_fields} ADD required smallint");
        $ret[] = update_sql("ALTER TABLE {profile_fields} ALTER COLUMN required SET DEFAULT '0'");
        $ret[] = update_sql("UPDATE {profile_fields} SET required = '0'");
        $ret[] = update_sql("ALTER TABLE {profile_fields} ALTER COLUMN required SET NOT NULL");
      }
    
    Dries Buytaert's avatar
     
    Dries Buytaert committed
      return $ret;
    }
    
    
    function update_83() {
      $ret = array();
      if ($GLOBALS["db_type"] == "mysql") {
    
        $ret[] = update_sql("CREATE TABLE {menu} (
    
          mid int(10) unsigned NOT NULL default '0',
          pid int(10) unsigned NOT NULL default '0',
          path varchar(255) NOT NULL default '',
          title varchar(255) NOT NULL default '',
          weight tinyint(4) NOT NULL default '0',
          visibility int(1) unsigned NOT NULL default '0',
          status int(1) unsigned NOT NULL default '0',
          PRIMARY KEY  (mid)
         );");
    
        $ret[] = update_sql("INSERT INTO {sequences} (name, id) VALUES ('menu_mid', 1)");
    
        $ret[] = update_sql("CREATE TABLE {menu} (
    
      mid integer NOT NULL default '0',
      pid integer NOT NULL default '0',
      path varchar(255) NOT NULL default '',
      title varchar(255) NOT NULL default '',
      weight smallint NOT NULL default '0',
      visibility smallint NOT NULL default '0',
      status smallint NOT NULL default '0',
      PRIMARY KEY  (mid)