phpOMS/DataStorage/Database/tableDefinition.json
2022-02-19 13:57:39 +01:00

19 lines
513 B
JSON
Executable File

{
".*": {
"name": "[a-z\\_]+",
"fields": {
".*": {
"name": "[a-z\\_]+",
"type": "[A-Z0-9\\(\\)]+",
".*?default": ".*",
".*?null": "1|0",
".*?primary": "1|0",
".*?unique": "1|0",
".*?autoincrement": "1|0",
".*?foreignTable": "[a-z\\_]+",
".*?foreignKey": "[a-z\\_]+",
".*?annotations": ".*"
}
}
}
}