# # TABLE STRUCTURE FOR: script # DROP TABLE IF EXISTS `script`; CREATE TABLE `script` ( `id` int(9) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `vendor` text NOT NULL, `onu_type` text NOT NULL, `script` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;