fix(lowcode): 更新数据库-表同步状态 将多个风险相关表的IS_DB_SYNC字段设置为'N'

- 涉及的表包括: lc_item_result, lc_outside_license, lc_outside_person
- 包括风险隐患管理和识别评估相关的表- 工作项表(lc_work_item)也包含在此次更新范围内
- 此更改确保这些表不会被自动同步到低代码平台
- 防止因数据结构不一致导致的同步错误
This commit is contained in:
2025-11-07 15:24:45 +08:00
parent f57ed1db61
commit de1fd12522

View File

@@ -0,0 +1,7 @@
update "LOWCODE_FRAME"."LOWCODE_DBFORM"
set IS_DB_SYNC='N'
where TABLE_NAME in (
'lc_item_result', 'lc_outside_license', 'lc_outside_person',
'lc_risk_hazard_manage', 'lc_risk_identify_assessment',
'lc_work_item'
);