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