Currently update.php consist following comment:

    NOTES:
    - If you upgrade from Drupal 3.00, you have to update your watchdog table manually before executing/starting this script. Simply do:

    sql> ALTER TABLE watchdog CHANGE user uid int(10) DEFAULT '0' NOT NULL;
    sql> ALTER TABLE watchdog CHANGE id wid int(5) DEFAULT '0' NOT NULL auto_increment;

IHMO these manual updates are unneccessary, because update script does these anyway- here's the dump

    2001-10-12 : pearification
    ALTER TABLE watchdog CHANGE user userid int(10) DEFAULT '0' NOT NULL; FAILED

    2001-10-14
    ALTER TABLE watchdog CHANGE id wid int(5) DEFAULT '0' NOT NULL auto_increment; FAILED

Comments

Anonymous’s picture

Assigned: Unassigned » Kjartan

Update.php will get some re-work done during the RC1 period. Hopefully I will be able to get some of the more urgent fixes in before RC1 so people can run test upgrades.

Did a full upgrade myself today and did some notes on what works and what doesn't. Currently running the update.php script will not work unless you know Drupal internals pretty well and can piece together the missing parts. Not much work, but I need some time to do the logical stuff when I am more awake. Easy to wipe a database clean if you make a few typoes.

Anonymous’s picture

Priority: Normal » Critical

The file has been updated should run properly now.