https://bugzilla.wikimedia.org/show_bug.cgi?id=43694
Doug Luce <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #19 from Doug Luce <[email protected]> --- I ran into this problem (on 1.20.2 and mysql-server-5.1.54p9 on OpenBSD). A manual hack seemed to fix it for me: mysql> alter table account_requests modify acr_email varchar(255) not null; Then I re-ran update.php. The column was already declared as TINYTEXT, which has a length of 255 and is otherwise similar to VARCHAR(255). But not exact, as you cannot specify an index length on a TINYTEXT. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
