Merge "Change 'history-show-deleted' message to 'Revision deleted only' for clarity"
[lhc/web/wiklou.git] / maintenance / archives / patch-transcache.sql
index 2bdc10c..70870ef 100644 (file)
@@ -1,7 +1,7 @@
 CREATE TABLE /*$wgDBprefix*/transcache (
-       tc_url          VARCHAR(255) NOT NULL,
+       tc_url          varbinary(255) NOT NULL,
        tc_contents     TEXT,
-       tc_time         INT NOT NULL,
+       tc_time         binary(14) NOT NULL,
        UNIQUE INDEX tc_url_idx(tc_url)
-);
+) /*$wgDBTableOptions*/;