mirror of https://github.com/itflow-org/itflow
Add database field for specifying ticket reply type: public/internal
This commit is contained in:
parent
1f6c617a5e
commit
19c90aac99
1
db.sql
1
db.sql
|
|
@ -999,6 +999,7 @@ DROP TABLE IF EXISTS `ticket_replies`;
|
|||
CREATE TABLE `ticket_replies` (
|
||||
`ticket_reply_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`ticket_reply` longtext NOT NULL,
|
||||
`ticket_reply_type` varchar(9) NOT NULL,
|
||||
`ticket_reply_created_at` datetime NOT NULL,
|
||||
`ticket_reply_updated_at` datetime DEFAULT NULL,
|
||||
`ticket_reply_archived_at` datetime DEFAULT NULL,
|
||||
|
|
|
|||
Loading…
Reference in New Issue