mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-27 17:01:07 +00:00
ae5fc8a6f9
...testing and reviewing... ... all tests work locally... .. mathjax is not ready to be released .. .. jenkins can't add fields to the database.. .. further testing and debugging ... .. cleanup the texvc.. Change-Id: I5132901ed2072c6af7b9ed82d267200d64c67939
11 lines
544 B
SQL
11 lines
544 B
SQL
--
|
|
-- Used by the math module to keep extra information for debugging
|
|
--
|
|
ALTER TABLE /*_*/math ADD math_tex text;
|
|
ALTER TABLE /*_*/math Add math_status int(4);
|
|
ALTER TABLE /*_*/math ADD valid_xml tinyint(1);
|
|
ALTER TABLE /*_*/math ADD math_log text;
|
|
ALTER TABLE /*_*/math ADD math_timestamp timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;
|
|
ALTER TABLE /*_*/math ADD KEY `math_timestamp` (`math_timestamp`);
|
|
ALTER TABLE /*_*/math ADD KEY `math_status` (`math_status`);
|
|
ALTER TABLE /*_*/math ADD KEY `valid_xml` (`valid_xml`); |