fix: 修复数据库缺失默认排序规则为 utf8mb4_general_ci

This commit is contained in:
haoxr
2024-12-10 12:35:58 +08:00
parent e4bd86ca06
commit f70c778318

View File

@@ -7,7 +7,7 @@
-- ----------------------------
-- 1. 创建数据库
-- ----------------------------
CREATE DATABASE IF NOT EXISTS youlai_boot DEFAULT CHARACTER SET utf8mb4 DEFAULT ;
CREATE DATABASE IF NOT EXISTS youlai_boot DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_general_ci;
-- ----------------------------