This commit is contained in:
2026-04-20 11:34:35 +08:00
parent 957976db31
commit bdbd6ae7e9
22 changed files with 761 additions and 238 deletions

View File

@@ -0,0 +1,3 @@
-- 账号注销标记注销时间NULL 表示未注销)
ALTER TABLE `user`
ADD COLUMN `cancelled_at` DATETIME NULL DEFAULT NULL COMMENT '账号注销时间' AFTER `disable`;