updates
updated system priorities color.
This commit is contained in:
@@ -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', '#80ff00', 4, 1, 0, NULL),
|
||||
(2, 'Normal', 'Normal', '#367FA9', 3, 1, 1, NULL),
|
||||
(3, 'High', 'High', '#ffff00', 2, 1, 0, NULL),
|
||||
(4, 'Emergency', 'Emergency', '#ff6666', 1, 1, 0, NULL);
|
||||
(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);
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
|
@@ -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', '#80ff00', 4, 1, 0, NULL),
|
||||
(2, 'Normal', 'Normal', '#367FA9', 3, 1, 1, NULL),
|
||||
(3, 'High', 'High', '#ffff00', 2, 1, 0, NULL),
|
||||
(4, 'Emergency', 'Emergency', '#ff6666', 1, 1, 0, NULL);
|
||||
(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);
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
|
@@ -215,10 +215,10 @@ class DatabaseSeeder extends Seeder
|
||||
Ticket_status::create(['name' => 'Request Approval', 'state' => 'unverified', 'mode' => '3', 'message' => 'Approval requested by', 'flags' => '0', 'sort' => '7', 'properties' => 'Ticket will be approve after Admin verifies this ticket']);
|
||||
|
||||
/* Ticket priority */
|
||||
Ticket_priority::create(['priority' => 'Low', 'status' => 1, 'priority_desc' => 'Low', 'priority_color' => '#80ff00', 'priority_urgency' => '4', 'ispublic' => '1']);
|
||||
Ticket_priority::create(['priority' => 'Normal', 'status' => 1, 'priority_desc' => 'Normal', 'priority_color' => '#367FA9', 'priority_urgency' => '3', 'ispublic' => '1', 'is_default' => '1']);
|
||||
Ticket_priority::create(['priority' => 'High', 'status' => 1, 'priority_desc' => 'High', 'priority_color' => '#ffff00', 'priority_urgency' => '2', 'ispublic' => '1']);
|
||||
Ticket_priority::create(['priority' => 'Emergency', 'status' => 1, 'priority_desc' => 'Emergency', 'priority_color' => '#ff6666', 'priority_urgency' => '1', 'ispublic' => '1']);
|
||||
Ticket_priority::create(['priority' => 'Low', 'status' => 1, 'priority_desc' => 'Low', 'priority_color' => '#00a65a', 'priority_urgency' => '4', 'ispublic' => '1']);
|
||||
Ticket_priority::create(['priority' => 'Normal', 'status' => 1, 'priority_desc' => 'Normal', 'priority_color' => '#00bfef', 'priority_urgency' => '3', 'ispublic' => '1', 'is_default' => '1']);
|
||||
Ticket_priority::create(['priority' => 'High', 'status' => 1, 'priority_desc' => 'High', 'priority_color' => '#f39c11', 'priority_urgency' => '2', 'ispublic' => '1']);
|
||||
Ticket_priority::create(['priority' => 'Emergency', 'status' => 1, 'priority_desc' => 'Emergency', 'priority_color' => '#dd4b38', 'priority_urgency' => '1', 'ispublic' => '1']);
|
||||
|
||||
/* Approval */
|
||||
Approval::create(['name' => 'approval', 'status' => '0']);
|
||||
|
Reference in New Issue
Block a user