(bug 16645) Making the pl_namespace, tl_namespace and il_to indices UNIQUE, just...
[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 INT NOT NULL,
5 UNIQUE INDEX tc_url_idx(tc_url)
6 ) /*$wgDBTableOptions*/;
7