Commit 769788ff by mercymodest

feat: add data_version column to t_list and t_list_item for version tracking

parent 589426d8
-- 设备设备码表 -- 设备设备码表
...@@ -75,6 +75,12 @@ alter table t_meal_recipe ...@@ -75,6 +75,12 @@ alter table t_meal_recipe
alter table t_meal_category alter table t_meal_category
add data_version bigint null comment '数据版本号'; add data_version bigint null comment '数据版本号';
alter table t_list
add data_version bigint null comment '数据版本号';
alter table t_list_item
add data_version bigint null comment '数据版本号';
-- 删除不必要的数据 -- 删除不必要的数据
DELETE DELETE
FROM t_user_device_codes FROM t_user_device_codes
......
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