Follow up r88270 — remove commas from table creation that break a
authorMark A. Hershberger <mah@users.mediawiki.org>
Tue, 17 May 2011 11:56:53 +0000 (11:56 +0000)
committerMark A. Hershberger <mah@users.mediawiki.org>
Tue, 17 May 2011 11:56:53 +0000 (11:56 +0000)
sqlite install.

maintenance/archives/patch-config.sql
maintenance/tables.sql

index afaeb76..791015e 100644 (file)
@@ -3,7 +3,7 @@ CREATE TABLE /*_*/config (
   -- 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));
index 69630e6..cee01d5 100644 (file)
@@ -1414,7 +1414,7 @@ CREATE TABLE /*_*/config (
   -- 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));