各种配置项修复,优化到后台管理端配置

This commit is contained in:
2026-03-04 19:42:21 -08:00
parent 3415262017
commit 2215df8c0b
6 changed files with 157 additions and 20 deletions
@@ -0,0 +1,4 @@
DROP INDEX `idx_user_deleted_at` ON `user_auth_methods`;
ALTER TABLE `user_auth_methods`
DROP COLUMN `deleted_at`;
@@ -0,0 +1,4 @@
ALTER TABLE `user_auth_methods`
ADD COLUMN `deleted_at` DATETIME(3) DEFAULT NULL COMMENT 'Deletion Time';
CREATE INDEX `idx_user_deleted_at` ON `user_auth_methods` (`user_id`, `deleted_at`);