mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-24 07:34:22 +00:00
5 lines
250 B
MySQL
5 lines
250 B
MySQL
|
--
|
||
|
-- Used by the math module to keep extra information for debugging
|
||
|
--
|
||
|
ALTER TABLE /*_*/math ADD math_timestamp timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;
|
||
|
ALTER TABLE /*_*/math ADD KEY `math_timestamp` (`math_timestamp`);
|