/* Navicat Premium Data Transfer Source Server : 幸福家【新】 Source Server Type : MySQL Source Server Version : 50744 Source Host : localhost:3306 Source Schema : nanjinglongzhu_c Target Server Type : MySQL Target Server Version : 50744 File Encoding : 65001 Date: 03/01/2025 14:55:10 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for eb_store_product_description -- ---------------------------- DROP TABLE IF EXISTS `eb_store_product_description`; CREATE TABLE `eb_store_product_description` ( `product_id` int(11) NOT NULL DEFAULT 0 COMMENT '商品ID', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '商品详情', `type` tinyint(1) NOT NULL DEFAULT 0 COMMENT '商品类型', INDEX `product_id`(`product_id`, `type`) USING BTREE, INDEX `type`(`type`, `product_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商品详情表' ROW_FORMAT = Dynamic; SET FOREIGN_KEY_CHECKS = 1;