Merge "Fix undefined $ok in DatabaseUpdater::migrateComments"
[lhc/web/wiklou.git] / maintenance / archives / patch-transcache.sql
index 0d2204e..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*/;