Closed (fixed)
Project:
Drupal core
Version:
x.y.z
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
16 Apr 2002 at 08:01 UTC
Updated:
5 Jul 2020 at 12:00 UTC
Currently update.php consist following comment:
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-14
ALTER TABLE watchdog CHANGE id wid int(5) DEFAULT '0' NOT NULL auto_increment; FAILED
Comments
Comment #1
(not verified) commentedUpdate.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.
Comment #2
(not verified) commentedThe file has been updated should run properly now.