2020-12-28 22:13:35 +00:00
|
|
|
-- This file is automatically generated using maintenance/generateSchemaSql.php.
|
|
|
|
-- Source: Math/sql/mathoid.json
|
|
|
|
-- Do not modify this file directly.
|
|
|
|
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
|
2014-05-27 05:53:46 +00:00
|
|
|
CREATE TABLE /*_*/mathoid (
|
2020-12-28 22:13:35 +00:00
|
|
|
math_inputhash VARBINARY(16) NOT NULL,
|
|
|
|
math_input TEXT NOT NULL,
|
|
|
|
math_tex TEXT DEFAULT NULL,
|
|
|
|
math_mathml TEXT DEFAULT NULL,
|
|
|
|
math_svg TEXT DEFAULT NULL,
|
|
|
|
math_style TINYINT DEFAULT NULL,
|
|
|
|
math_input_type TINYINT DEFAULT NULL,
|
|
|
|
math_png MEDIUMBLOB DEFAULT NULL,
|
|
|
|
PRIMARY KEY(math_inputhash)
|
2014-05-27 05:53:46 +00:00
|
|
|
) /*$wgDBTableOptions*/;
|