Bug-fix-patch

Database update for priority bug fix.
This commit is contained in:
Manish Verma
2016-11-03 18:28:23 +05:30
parent 8c6b314499
commit 7fecdb1df9
3 changed files with 12 additions and 12 deletions

View File

@@ -2036,10 +2036,10 @@ CREATE TABLE IF NOT EXISTS `ticket_priority` (
--
INSERT INTO `ticket_priority` (`priority_id`, `priority`, `priority_desc`, `priority_color`, `priority_urgency`, `ispublic`, `status`, `is_default`) VALUES
(1, 'Low', 'Low', '#00a65a', 4, 1, 0, NULL),
(2, 'Normal', 'Normal', '#00bfef', 3, 1, 1, NULL),
(3, 'High', 'High', '#f39c11', 2, 1, 0, NULL),
(4, 'Emergency', 'Emergency', '#dd4b38', 1, 1, 0, NULL);
(1, 'Low', 'Low', '#00a65a', 4, 1, 0, 0),
(2, 'Normal', 'Normal', '#00bfef', 3, 1, 1, 1),
(3, 'High', 'High', '#f39c11', 2, 1, 0, 0),
(4, 'Emergency', 'Emergency', '#dd4b38', 1, 1, 0, 0);
-- --------------------------------------------------------