http://www.mediawiki.org/wiki/Special:Code/MediaWiki/88296

Revision: 88296
Author:   mah
Date:     2011-05-17 11:56:53 +0000 (Tue, 17 May 2011)
Log Message:
-----------
Follow up r88270 ?\226?\128?\148 remove commas from table creation that break a
sqlite install.

Modified Paths:
--------------
    trunk/phase3/maintenance/archives/patch-config.sql
    trunk/phase3/maintenance/tables.sql

Modified: trunk/phase3/maintenance/archives/patch-config.sql
===================================================================
--- trunk/phase3/maintenance/archives/patch-config.sql  2011-05-17 11:55:48 UTC 
(rev 88295)
+++ trunk/phase3/maintenance/archives/patch-config.sql  2011-05-17 11:56:53 UTC 
(rev 88296)
@@ -3,7 +3,7 @@
   -- Config var name
   cf_name varbinary(255) NOT NULL PRIMARY KEY,
   -- Config var value
-  cf_value blob NOT NULL,
+  cf_value blob NOT NULL
 ) /*$wgDBTableOptions*/;
 -- Should cover *most* configuration - strings, ints, bools, etc.
 CREATE INDEX /*i*/cf_name_value ON /*_*/config (cf_name,cf_value(255));

Modified: trunk/phase3/maintenance/tables.sql
===================================================================
--- trunk/phase3/maintenance/tables.sql 2011-05-17 11:55:48 UTC (rev 88295)
+++ trunk/phase3/maintenance/tables.sql 2011-05-17 11:56:53 UTC (rev 88296)
@@ -1414,7 +1414,7 @@
   -- Config var name
   cf_name varbinary(255) NOT NULL PRIMARY KEY,
   -- Config var value
-  cf_value blob NOT NULL,
+  cf_value blob NOT NULL
 ) /*$wgDBTableOptions*/;
 -- Should cover *most* configuration - strings, ints, bools, etc.
 CREATE INDEX /*i*/cf_name_value ON /*_*/config (cf_name,cf_value(255));


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to