RevisionStoreDbTestBase, remove redundant needsDB override
[lhc/web/wiklou.git] / maintenance / archives / patch-transcache.sql
1 CREATE TABLE /*$wgDBprefix*/transcache (
2 tc_url varbinary(255) NOT NULL,
3 tc_contents TEXT,
4 tc_time binary(14) NOT NULL,
5 UNIQUE INDEX tc_url_idx(tc_url)
6 ) /*$wgDBTableOptions*/;
7