7.8 解决bug

This commit is contained in:
zhangsan 2025-07-09 21:20:37 +08:00
parent 610f836e22
commit 22beb01954

View File

@ -14,6 +14,13 @@
Date: 07/07/2025 16:48:53
*/
-- 如果数据库不存在则创建
CREATE DATABASE IF NOT EXISTS `group_buying_sys`
DEFAULT CHARACTER SET utf8mb4
COLLATE utf8mb4_0900_ai_ci;
-- 切换到该数据库
USE `group_buying_sys`;
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;