各种配置项修复,优化到后台管理端配置
This commit is contained in:
@@ -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`);
|
||||
Reference in New Issue
Block a user