SECURITY: Do not allow user scripts on Special:PasswordReset
[lhc/web/wiklou.git] / maintenance / archives / patch-querycacheinfo.sql
index 0f807d8..7ad2bca 100644 (file)
@@ -1,12 +1,12 @@
-CREATE TABLE /*$wgDBprefix*/querycache_info (\r
-\r
-       -- Special page name\r
-       -- Corresponds to a qc_type value\r
-       qci_type varchar(255) NOT NULL default '',\r
-\r
-       -- Timestamp of last update\r
-       qci_timestamp char(14) NOT NULL default '19700101000000',\r
-\r
-       UNIQUE KEY ( qci_type )\r
-\r
-) TYPE=InnoDB;
\ No newline at end of file
+CREATE TABLE /*$wgDBprefix*/querycache_info (
+
+       -- Special page name
+       -- Corresponds to a qc_type value
+       qci_type varbinary(32) NOT NULL default '',
+
+       -- Timestamp of last update
+       qci_timestamp binary(14) NOT NULL default '19700101000000',
+
+       UNIQUE KEY ( qci_type )
+
+) /*$wgDBTableOptions*/;