{ "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" } } } }