# # TABLE STRUCTURE FOR: m_media_connection # DROP TABLE IF EXISTS `m_media_connection`; CREATE TABLE `m_media_connection` ( `id` int(11) NOT NULL AUTO_INCREMENT, `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;