oms-Support/Admin/Install/db.json
Dennis Eichhorn a4d02a8411 ui fixes
2024-04-07 17:31:42 +00:00

53 lines
1.5 KiB
JSON
Executable File

{
"support_app": {
"name": "support_app",
"fields": {
"support_app_id": {
"name": "support_app_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"support_app_name": {
"name": "support_app_name",
"type": "VARCHAR(255)",
"default": null
},
"support_app_unit": {
"name": "support_app_unit",
"type": "INT",
"default": null,
"null": true,
"foreignTable": "unit",
"foreignKey": "unit_id"
}
}
},
"support_ticket": {
"name": "support_ticket",
"fields": {
"support_ticket_id": {
"name": "support_ticket_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"support_ticket_task": {
"name": "support_ticket_task",
"type": "INT",
"null": false,
"foreignTable": "task",
"foreignKey": "task_id"
},
"support_ticket_app": {
"name": "support_ticket_app",
"type": "INT",
"null": false,
"foreignTable": "support_app",
"foreignKey": "support_app_id"
}
}
}
}