feat(sql): 更新数据库表同步状态配置

- 添加新的SQL脚本以重置指定表的同步状态
- 修改测试用例中的执行日期以匹配最新SQL脚本
- 新增对多个操作类表的同步状态更新支持
This commit is contained in:
2025-12-05 17:34:57 +08:00
parent 0af4264ba7
commit 40a93c5dc9
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
update
"LOWCODE_FRAME"."LOWCODE_DBFORM"
set
IS_DB_SYNC='N'
where
TABLE_NAME in (
'lc_building','lc_power_env_device','lc_power_env_monitor_metric'
);

View File

@@ -0,0 +1,8 @@
update
"LOWCODE_FRAME"."LOWCODE_DBFORM"
set IS_DB_SYNC='N'
where TABLE_NAME in (
'lc_confined_space_operation', 'lc_drill_task', 'lc_fire_operation', 'lc_high_operation',
'lc_land_operation', 'lc_lifting_operation', 'lc_outside_license', 'lc_outside_person',
'lc_temporary_power_operation'
);