Merge "Bug 35681 - Upgrade jQuery UI to 1.8.18"
[mediawiki.git] / maintenance / archives / patch-config.sql
blob791015e92b99187e185d1b9aeac7747b7a84dc87
1 -- Table for holding configuration changes
2 CREATE TABLE /*_*/config (
3   -- Config var name
4   cf_name varbinary(255) NOT NULL PRIMARY KEY,
5   -- Config var value
6   cf_value blob NOT NULL
7 ) /*$wgDBTableOptions*/;
8 -- Should cover *most* configuration - strings, ints, bools, etc.
9 CREATE INDEX /*i*/cf_name_value ON /*_*/config (cf_name,cf_value(255));