mirror of
https://github.com/Karaka-Management/oms-Support.git
synced 2026-01-11 00:58:41 +00:00
53 lines
1.5 KiB
JSON
Executable File
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"
|
|
}
|
|
}
|
|
}
|
|
} |