Unify staff recruitment work table collation

This commit is contained in:
wkc
2026-04-22 10:07:05 +08:00
parent fc6af5234d
commit 94507e3747
9 changed files with 154 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
-- 修复 ccdi 数据库默认字符集与排序规则
-- 目标:将数据库默认字符集统一为 utf8mb4默认排序规则统一为 utf8mb4_general_ci
ALTER DATABASE `ccdi`
CHARACTER SET = utf8mb4
COLLATE = utf8mb4_general_ci;