mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 03:34:10 +00:00
9 lines
346 B
MySQL
9 lines
346 B
MySQL
|
CREATE TABLE &mw_prefix.math (
|
||
|
math_inputhash VARCHAR2(32) NOT NULL,
|
||
|
math_outputhash VARCHAR2(32) NOT NULL,
|
||
|
math_html_conservativeness NUMBER NOT NULL,
|
||
|
math_html CLOB,
|
||
|
math_mathml CLOB
|
||
|
);
|
||
|
CREATE UNIQUE INDEX &mw_prefix.math_u01 ON &mw_prefix.math (math_inputhash);
|