mediawiki-extensions-Math/sql/sqlite/mathlatexml.sql

14 lines
472 B
MySQL
Raw Normal View History

-- 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 BLOB NOT NULL,
math_inputtex CLOB NOT NULL,
math_tex CLOB DEFAULT NULL,
math_mathml CLOB DEFAULT NULL,
math_svg CLOB DEFAULT NULL,
math_style SMALLINT DEFAULT NULL,
PRIMARY KEY(math_inputhash)
);