Commit 8b545eac by mercymodest

feat: remove unnecessary data from t_user_device_codes for cleanup

parent 5525870f
-- 设备设备码表 -- 设备设备码表
...@@ -56,3 +56,9 @@ alter table ...@@ -56,3 +56,9 @@ alter table
modify modify
device_code varchar(10) not null comment '设备码(如果是多设备登录(is_multi_device_login=1),则设备码详情见 t_device_code 表)'; device_code varchar(10) not null comment '设备码(如果是多设备登录(is_multi_device_login=1),则设备码详情见 t_device_code 表)';
-- 删除不必要的数据
DELETE
FROM t_user_device_codes
WHERE is_delete = 1;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment