1 -- Creates table math used for caching TeX blocks. Needs to be run
2 -- on old installations when adding TeX support (2002-12-26)
3 -- Or, TeX can be disabled via $wgUseTeX=false in LocalSettings.php
5 -- Note: math table has changed, and this script needs to be run again
6 -- to create it. (2003-02-02)
8 DROP TABLE IF EXISTS math;
10 math_inputhash varchar(16) NOT NULL,
11 math_outputhash varchar(16) NOT NULL,
12 math_html_conservativeness tinyint(1) NOT NULL,
15 UNIQUE KEY math_inputhash (math_inputhash)