mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
Show who else is viewing the same open ticket as you
This commit is contained in:
16
db.sql
16
db.sql
@@ -1274,6 +1274,22 @@ CREATE TABLE `ticket_replies` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `ticket_views`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `ticket_views`;
|
||||
CREATE TABLE IF NOT EXISTS `ticket_views` (
|
||||
`view_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`view_ticket_id` int(11) NOT NULL,
|
||||
`view_user_id` int(11) NOT NULL,
|
||||
`view_timestamp` datetime NOT NULL,
|
||||
PRIMARY KEY (`view_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `tickets`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user