# # TABLE STRUCTURE FOR: promo # DROP TABLE IF EXISTS `promo`; CREATE TABLE `promo` ( `promo_id` int(9) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `picture` text NOT NULL, `remark` text NOT NULL, `slug` text NOT NULL, `description` text NOT NULL, PRIMARY KEY (`promo_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;