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

74 lines
1.1 KiB
JSON

[
{
"name": "mathoid",
"columns": [
{
"name": "math_inputhash",
"type": "binary",
"options": {
"notnull": true,
"length": 16,
"fixed": false
}
},
{
"name": "math_input",
"type": "text",
"options": {
"notnull": true,
"length": 65535
}
},
{
"name": "math_tex",
"type": "text",
"options": {
"notnull": false,
"length": 65535
}
},
{
"name": "math_mathml",
"type": "text",
"options": {
"notnull": false,
"length": 65535
}
},
{
"name": "math_svg",
"type": "text",
"options": {
"notnull": false,
"length": 65535
}
},
{
"name": "math_style",
"type": "mwtinyint",
"options": {
"notnull": false
}
},
{
"name": "math_input_type",
"type": "mwtinyint",
"options": {
"notnull": false
}
},
{
"name": "math_png",
"type": "blob",
"options": {
"notnull": false,
"length": 16777215
}
}
],
"indexes": [],
"pk": [
"math_inputhash"
]
}
]