http://www.mediawiki.org/wiki/Special:Code/MediaWiki/97847
Revision: 97847 Author: asher Date: 2011-09-22 20:08:03 +0000 (Thu, 22 Sep 2011) Log Message: ----------- there was an incorrect index name in http://svn.wikimedia.org/viewvc/mediawiki/branches/REL1_18/extensions/LiquidThreads/schema-changes/ums_conversation.sql?annotate=97814 (grr!) Modified Paths: -------------- branches/wmf/1.18wmf1/maintenance/ums_conversation.sql Modified: branches/wmf/1.18wmf1/maintenance/ums_conversation.sql =================================================================== --- branches/wmf/1.18wmf1/maintenance/ums_conversation.sql 2011-09-22 20:07:44 UTC (rev 97846) +++ branches/wmf/1.18wmf1/maintenance/ums_conversation.sql 2011-09-22 20:08:03 UTC (rev 97847) @@ -3,7 +3,7 @@ ALTER TABLE /*_*/user_message_state ADD COLUMN ums_conversation int(8) unsigned NOT NULL DEFAULT 0; CREATE INDEX /*i*/ums_user_conversation ON /*_*/user_message_state (ums_user,ums_conversation); -DROP INDEX /*i*/ums_read ON /*_*/user_message_state; +DROP INDEX /*i*/ums_user ON /*_*/user_message_state; UPDATE /*_*/user_message_state, /*_*/thread SET /*_*/user_message_state.ums_conversation = if(/*_*/thread.thread_ancestor, /*_*/thread.thread_ancestor, /*_*/thread.thread_id) _______________________________________________ MediaWiki-CVS mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs
