#
# TABLE STRUCTURE FOR: genieacs
#

DROP TABLE IF EXISTS `genieacs`;

CREATE TABLE `genieacs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `alias` text NOT NULL,
  `is_active` int(11) NOT NULL,
  `remark` text NOT NULL,
  `url_genieacs` text NOT NULL,
  `created` int(11) NOT NULL,
  `createby` int(11) NOT NULL,
  `updated` int(11) NOT NULL,
  `updateby` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

