phpOMS/DataStorage/Database/tableDefinition.json
Dennis Eichhorn a7f9eab55a
Some checks failed
CI / general_module_workflow_php (push) Has been cancelled
Test fixes
2024-05-16 02:14:55 +00:00

22 lines
637 B
JSON
Executable File

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