2
0

feat: db upgrade sql

This commit is contained in:
zhangsz
2025-02-24 10:39:24 +08:00
parent f03cf99d5c
commit b691bedc13
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
ALTER TABLE `wfc_user_db`.`u_user`
ADD COLUMN `birth_date` date NULL COMMENT '出生日期' AFTER `age`;
SET FOREIGN_KEY_CHECKS = 1;