mediawiki-extensions-Math/db/mathlatexml.mysql.sql
Moritz Schubotz (physikerwelt) 50a8fe1079 Convert Math to abstract schema
Bug: T268561
Change-Id: I0c7c1fec8cc4d2b7eb6e14db03b1b753ba95193b
2021-01-30 19:28:21 +01:00

14 lines
508 B
SQL

-- This file is automatically generated using maintenance/generateSchemaSql.php.
-- Source: Math/sql/mathlatexml.json
-- Do not modify this file directly.
-- See https://www.mediawiki.org/wiki/Manual:Schema_changes
CREATE TABLE /*_*/mathlatexml (
math_inputhash VARBINARY(16) NOT NULL,
math_inputtex TEXT NOT NULL,
math_tex TEXT DEFAULT NULL,
math_mathml MEDIUMTEXT DEFAULT NULL,
math_svg TEXT DEFAULT NULL,
math_style TINYINT DEFAULT NULL,
PRIMARY KEY(math_inputhash)
) /*$wgDBTableOptions*/;