fix(lowcode): 更新数据库同步状态配置- 将多个表的IS_DB_SYNC字段设置为'N'- 涉及受限空间作业、外部许可等相关业务表

- 确保这些表在下次同步时重新初始化数据
- 避免因同步状态异常导致的数据不一致问题
This commit is contained in:
2025-11-04 14:27:55 +08:00
parent e97e7dfe94
commit 674af1cc17

View File

@@ -0,0 +1,9 @@
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'
);