Files
mcp-vultr/not_used/extracted_backup/help.sql

30 lines
1.4 KiB
SQL

#
# TABLE STRUCTURE FOR: help
#
DROP TABLE IF EXISTS `help`;
CREATE TABLE `help` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`no_ticket` varchar(50) NOT NULL,
`help_type` int(11) NOT NULL,
`help_solution` int(11) NOT NULL,
`no_services` varchar(50) NOT NULL,
`description` text NOT NULL,
`date_created` int(11) NOT NULL,
`status` varchar(50) NOT NULL,
`teknisi` int(11) NOT NULL,
`picture` text NOT NULL,
`create_by` int(11) NOT NULL,
`action` int(11) NOT NULL,
`estimation` int(11) NOT NULL,
`ticket_password` text NOT NULL,
`date_help` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
INSERT INTO `help` (`id`, `no_ticket`, `help_type`, `help_solution`, `no_services`, `description`, `date_created`, `status`, `teknisi`, `picture`, `create_by`, `action`, `estimation`, `ticket_password`, `date_help`) VALUES (1, '251120001', 2, 9, '82000009', '', 1763621151, 'pending', 0, 'help-251120-2dd6ed8da0.jpg', 0, 0, 0, '', '2025-11-20');
INSERT INTO `help` (`id`, `no_ticket`, `help_type`, `help_solution`, `no_services`, `description`, `date_created`, `status`, `teknisi`, `picture`, `create_by`, `action`, `estimation`, `ticket_password`, `date_help`) VALUES (2, '251210001', 1, 2, '2000011', 'Router mati , internet tidak muncul ????', 1765334163, 'pending', 0, 'help-251210-e021bbc7ef.jpg', 0, 0, 0, '', '2025-12-10');