/* Navicat Premium Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 80023 Source Host : localhost:3306 Source Schema : h5 Target Server Type : MySQL Target Server Version : 80023 File Encoding : 65001 Date: 12/11/2025 15:00:00 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for h5_project_groups -- ---------------------------- DROP TABLE IF EXISTS `h5_project_groups`; CREATE TABLE `h5_project_groups` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键ID', `project_id` bigint NOT NULL COMMENT '项目ID', `group_id` bigint NOT NULL COMMENT '分组ID', `create_time` bigint NULL DEFAULT NULL COMMENT '创建时间戳', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_project_id`(`project_id`) USING BTREE, INDEX `idx_group_id`(`group_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'H5项目与分组关联表' ROW_FORMAT = Dynamic; SET FOREIGN_KEY_CHECKS = 1;