r88296 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r88295‎ | r88296 | r88297 >
Date:11:56, 17 May 2011
Author:mah
Status:ok
Tags:
Comment:
Follow up r88270 — remove commas from table creation that break a
sqlite install.
Modified paths:
  • /trunk/phase3/maintenance/archives/patch-config.sql (modified) (history)
  • /trunk/phase3/maintenance/tables.sql (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/archives/patch-config.sql
@@ -3,7 +3,7 @@
44 -- Config var name
55 cf_name varbinary(255) NOT NULL PRIMARY KEY,
66 -- Config var value
7 - cf_value blob NOT NULL,
 7+ cf_value blob NOT NULL
88 ) /*$wgDBTableOptions*/;
99 -- Should cover *most* configuration - strings, ints, bools, etc.
1010 CREATE INDEX /*i*/cf_name_value ON /*_*/config (cf_name,cf_value(255));
Index: trunk/phase3/maintenance/tables.sql
@@ -1414,7 +1414,7 @@
14151415 -- Config var name
14161416 cf_name varbinary(255) NOT NULL PRIMARY KEY,
14171417 -- Config var value
1418 - cf_value blob NOT NULL,
 1418+ cf_value blob NOT NULL
14191419 ) /*$wgDBTableOptions*/;
14201420 -- Should cover *most* configuration - strings, ints, bools, etc.
14211421 CREATE INDEX /*i*/cf_name_value ON /*_*/config (cf_name,cf_value(255));

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r88270Initial commit of configuration management backend proposal. Feedback desired...demon21:04, 16 May 2011

Status & tagging log