fix(lowcode): 更新数据库表同步状态- 将多个作业相关表的IS_DB_SYNC字段设置为'N'- 涉及受限空间、动火、高空等11个作业管理表

- 确保这些表在下次同步时重新初始化数据
This commit is contained in:
2025-11-12 17:27:17 +08:00
parent 6a640020f6
commit 64704b9ab4

View File

@@ -0,0 +1,9 @@
update "LOWCODE_FRAME"."LOWCODE_DBFORM"
set IS_DB_SYNC='N'
where TABLE_NAME in ('lc_confined_space_operation',
'lc_fire_operation', 'lc_high_operation',
'lc_item_result', 'lc_land_operation',
'lc_lifting_operation', 'lc_outside_person',
'lc_risk_hazard_manage', 'lc_risk_identify_assessment',
'lc_temporary_power_operation', 'lc_todo_request_info',
'lc_work_item');