From e547a7678049649db1c3710d78bf6b66277050e9 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Wed, 7 Apr 2021 17:00:11 -0400 Subject: [PATCH] Initial work on ticket assignment. Added ticket_assigned_to to tickets Database table structure --- db.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db.sql b/db.sql index ce6b0496..16c17bab 100644 --- a/db.sql +++ b/db.sql @@ -848,6 +848,7 @@ CREATE TABLE `tickets` ( `ticket_archived_at` datetime DEFAULT NULL, `ticket_closed_at` datetime DEFAULT NULL, `ticket_created_by` int(11) NOT NULL, + `ticket_assigned_to` int(11) DEFAULT NULL, `ticket_closed_by` int(11) DEFAULT NULL, `vendor_id` int(11) DEFAULT NULL, `client_id` int(11) DEFAULT NULL, @@ -981,4 +982,4 @@ CREATE TABLE `vendors` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2021-03-27 16:49:58 +-- Dump completed on 2021-04-07 16:59:12