mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-12 09:20:05 +00:00
12 lines
321 B
MySQL
12 lines
321 B
MySQL
|
--
|
||
|
-- Used by the math module to keep track
|
||
|
-- of previously-rendered items.
|
||
|
--
|
||
|
CREATE TABLE /*$wgDBprefix*/math (
|
||
|
math_inputhash varbinary(16) NOT NULL PRIMARY KEY,
|
||
|
math_outputhash varbinary(16) NOT NULL,
|
||
|
math_html_conservativeness tinyint NOT NULL,
|
||
|
math_html NVARCHAR(MAX),
|
||
|
math_mathml NVARCHAR(MAX),
|
||
|
);
|