Lines 6287-6292
CREATE TABLE `ticket_updates` (
Link Here
|
6287 |
`public` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'boolean flag to denote whether this update is public', |
6287 |
`public` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'boolean flag to denote whether this update is public', |
6288 |
`date` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'date and time this update was logged', |
6288 |
`date` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'date and time this update was logged', |
6289 |
`message` text NOT NULL COMMENT 'update message content', |
6289 |
`message` text NOT NULL COMMENT 'update message content', |
|
|
6290 |
`status` varchar(80) DEFAULT NULL COMMENT 'status of ticket at this update', |
6290 |
PRIMARY KEY (`id`), |
6291 |
PRIMARY KEY (`id`), |
6291 |
KEY `ticket_updates_ibfk_1` (`ticket_id`), |
6292 |
KEY `ticket_updates_ibfk_1` (`ticket_id`), |
6292 |
KEY `ticket_updates_ibfk_2` (`user_id`), |
6293 |
KEY `ticket_updates_ibfk_2` (`user_id`), |
Lines 6309-6314
CREATE TABLE `tickets` (
Link Here
|
6309 |
`reported_date` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'date and time this ticket was reported', |
6310 |
`reported_date` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'date and time this ticket was reported', |
6310 |
`title` text NOT NULL COMMENT 'ticket title', |
6311 |
`title` text NOT NULL COMMENT 'ticket title', |
6311 |
`body` text NOT NULL COMMENT 'ticket details', |
6312 |
`body` text NOT NULL COMMENT 'ticket details', |
|
|
6313 |
`status` varchar(80) DEFAULT NULL COMMENT 'current status of the ticket', |
6312 |
`resolver_id` int(11) DEFAULT NULL COMMENT 'id of the user who resolved the ticket', |
6314 |
`resolver_id` int(11) DEFAULT NULL COMMENT 'id of the user who resolved the ticket', |
6313 |
`resolved_date` datetime DEFAULT NULL COMMENT 'date and time this ticket was resolved', |
6315 |
`resolved_date` datetime DEFAULT NULL COMMENT 'date and time this ticket was resolved', |
6314 |
`biblio_id` int(11) DEFAULT NULL COMMENT 'id of biblio linked', |
6316 |
`biblio_id` int(11) DEFAULT NULL COMMENT 'id of biblio linked', |