From: Mark A. Hershberger Date: Tue, 17 May 2011 11:56:53 +0000 (+0000) Subject: Follow up r88270 — remove commas from table creation that break a X-Git-Tag: 1.31.0-rc.0~30107 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=commitdiff_plain;h=bb30a17b710b9797ed82051f7c6075c61645456d;p=lhc%2Fweb%2Fwiklou.git Follow up r88270 — remove commas from table creation that break a sqlite install. --- diff --git a/maintenance/archives/patch-config.sql b/maintenance/archives/patch-config.sql index afaeb76e29..791015e92b 100644 --- a/maintenance/archives/patch-config.sql +++ b/maintenance/archives/patch-config.sql @@ -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)); diff --git a/maintenance/tables.sql b/maintenance/tables.sql index 69630e6398..cee01d5412 100644 --- a/maintenance/tables.sql +++ b/maintenance/tables.sql @@ -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));