mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-13 17:56:59 +00:00
ed570661de
* Add primary key to mathtable * Unify naming of database files Bug: 65525 Change-Id: I4f4d31c281257014734e9e3a8d7f1506855ea6d9
22 lines
633 B
SQL
22 lines
633 B
SQL
--
|
|
-- Used by the math module to keep track
|
|
-- of previously-rendered items.
|
|
--
|
|
CREATE TABLE /*_*/math (
|
|
-- Binary MD5 hash of the latex fragment, used as an identifier key.
|
|
math_inputhash varbinary(16) NOT NULL PRIMARY KEY,
|
|
|
|
-- Not sure what this is, exactly...
|
|
math_outputhash varbinary(16) NOT NULL,
|
|
|
|
-- texvc reports how well it thinks the HTML conversion worked;
|
|
-- if it's a low level the PNG rendering may be preferred.
|
|
math_html_conservativeness tinyint NOT NULL,
|
|
|
|
-- HTML output from texvc, if any
|
|
math_html text,
|
|
|
|
-- MathML output from texvc, or from LaTeXML
|
|
math_mathml text
|
|
) /*$wgDBTableOptions*/;
|