mediawiki-extensions-Math/sql/mysql/mathlatexml.sql
Umherirrender 44f7c7821a schema: Move all sql files to sql folder
It is good practice to have a folder in the root for all sql files.
Also use the engine folder to store the patches

Change-Id: Ic26c042f0a5a8ca6e0568b38c4b4b2b4f0686efb
2022-06-22 18:11:51 +00: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*/;