#
# TABLE STRUCTURE FOR: help_type
#

DROP TABLE IF EXISTS `help_type`;

CREATE TABLE `help_type` (
  `help_id` int(11) NOT NULL AUTO_INCREMENT,
  `help_type` varchar(50) NOT NULL,
  `help_remark` text NOT NULL,
  PRIMARY KEY (`help_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

INSERT INTO `help_type` (`help_id`, `help_type`, `help_remark`) VALUES (1, 'Internet', 'yang berurusan dengan internet');
INSERT INTO `help_type` (`help_id`, `help_type`, `help_remark`) VALUES (2, 'Tagihan', 'Berkaitan');
INSERT INTO `help_type` (`help_id`, `help_type`, `help_remark`) VALUES (6, 'Kabel', 'Ganti');
INSERT INTO `help_type` (`help_id`, `help_type`, `help_remark`) VALUES (7, 'Sinyal Lemah', 'Pointing Ulang / Tinggikan Antena');


