mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-14 19:26:08 +00:00
50a8fe1079
Bug: T268561 Change-Id: I0c7c1fec8cc4d2b7eb6e14db03b1b753ba95193b
16 lines
527 B
SQL
16 lines
527 B
SQL
-- 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
|
|
CREATE TABLE mathoid (
|
|
math_inputhash TEXT NOT NULL,
|
|
math_input TEXT NOT NULL,
|
|
math_tex TEXT DEFAULT NULL,
|
|
math_mathml TEXT DEFAULT NULL,
|
|
math_svg TEXT DEFAULT NULL,
|
|
math_style SMALLINT DEFAULT NULL,
|
|
math_input_type SMALLINT DEFAULT NULL,
|
|
math_png TEXT DEFAULT NULL,
|
|
PRIMARY KEY(math_inputhash)
|
|
);
|