mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-13 17:56:59 +00:00
44f7c7821a
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
16 lines
532 B
SQL
16 lines
532 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 BLOB NOT NULL,
|
|
math_input CLOB NOT NULL,
|
|
math_tex CLOB DEFAULT NULL,
|
|
math_mathml CLOB DEFAULT NULL,
|
|
math_svg CLOB DEFAULT NULL,
|
|
math_style SMALLINT DEFAULT NULL,
|
|
math_input_type SMALLINT DEFAULT NULL,
|
|
math_png BLOB DEFAULT NULL,
|
|
PRIMARY KEY(math_inputhash)
|
|
);
|