- 涉及的表包括: lc_item_result, lc_outside_license, lc_outside_person - 包括风险隐患管理和识别评估相关的表- 工作项表(lc_work_item)也包含在此次更新范围内 - 此更改确保这些表不会被自动同步到低代码平台 - 防止因数据结构不一致导致的同步错误
8 lines
283 B
SQL
8 lines
283 B
SQL
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'
|
|
);
|