Code comment and style cleanups to MysqlLockManager
[mediawiki.git] / maintenance / archives / patch-tc-timestamp.sql
blob3f7dde41e0ec9446aae00546d40e150d862721bb
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");
4 INSERT INTO /*_*/updatelog(ul_key) VALUES ('convert transcache field');