oms-Support/Admin/Install/db.json
Dennis Eichhorn e6518f4d6f
Some checks failed
Image optimization / general_image_workflow (push) Has been cancelled
CI / general_module_workflow_php (push) Has been cancelled
CI / general_module_workflow_js (push) Has been cancelled
fix permissions
2025-04-02 14:15:06 +00:00

79 lines
2.4 KiB
JSON

{
"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"
}
}
},
"support_ticket_note": {
"name": "support_ticket_note",
"fields": {
"support_ticket_note_id": {
"name": "support_ticket_note_id",
"type": "INT",
"null": false,
"primary": true,
"autoincrement": true
},
"support_ticket_note_ticket": {
"name": "support_ticket_note_ticket",
"type": "INT",
"null": false,
"foreignTable": "support_ticket",
"foreignKey": "support_ticket_id"
},
"support_ticket_note_doc": {
"name": "support_ticket_note_doc",
"type": "INT",
"null": false,
"foreignTable": "editor_doc",
"foreignKey": "editor_doc_id"
}
}
}
}