Files
lc_backend/SQL/202511/20251104/z_exec_last.sql
yang chen 674af1cc17 fix(lowcode): 更新数据库同步状态配置- 将多个表的IS_DB_SYNC字段设置为'N'- 涉及受限空间作业、外部许可等相关业务表
- 确保这些表在下次同步时重新初始化数据
- 避免因同步状态异常导致的数据不一致问题
2025-11-04 14:27:55 +08:00

10 lines
456 B
SQL

update "LOWCODE_FRAME"."LOWCODE_DBFORM"
set IS_DB_SYNC='N'
where TABLE_NAME in (
'lc_confined_space_operation_safe', 'lc_outside_license',
'lc_fire_operation_detail', 'lc_high_operation_detail',
'lc_land_operation', 'lc_land_operation_detail',
'lc_lifting_operation_detail', 'lc_risk_identify_assessment',
'lc_temporary_power_operation_detail'
);