Files
lc_backend/SQL/202510/20251023/z_exec_last.sql
yang chen 1bcd07c0c8 fix(lowcode): 更新数据库表同步状态- 将多个业务表的IS_DB_SYNC字段设置为'N'
- 涉及受限空间作业、钻井任务等15张表- 确保这些表不会被自动同步到低代码平台
- 防止因数据结构不一致导致的同步异常
2025-10-23 18:07:11 +08:00

15 lines
660 B
SQL

update "LOWCODE_FRAME"."LOWCODE_DBFORM"
set IS_DB_SYNC='N'
where TABLE_NAME in (
'lc_confined_space_operation',
'lc_drill_task', 'lc_emergency_plan',
'lc_exam_plan', 'lc_exam_record',
'lc_fire_operation', 'lc_high_operation',
'lc_land_operation', 'lc_lifting_operation',
'lc_outside_license', 'lc_outside_person',
'lc_risk_hazard_manage',
'lc_risk_identity_assessment',
'lc_temporary_power_operation',
'lc_training_plan', 'lc_training_record'
);