RevisionStoreDbTestBase, remove redundant needsDB override
[lhc/web/wiklou.git] / maintenance / archives / patch-tc-timestamp.sql
1 ALTER TABLE /*_*/transcache MODIFY tc_time binary(14);
2 UPDATE /*_*/transcache SET tc_time = DATE_FORMAT(FROM_UNIXTIME(tc_time), "%Y%c%d%H%i%s");
3
4 INSERT INTO /*_*/updatelog(ul_key) VALUES ('convert transcache field');