update 优化 增加5.3.0-5.3.1升级sql

This commit is contained in:
疯狂的狮子Li
2025-03-04 09:44:11 +08:00
parent 0c6faa751a
commit 9dcb7c6a12
6 changed files with 27 additions and 12 deletions

View File

@ -0,0 +1,9 @@
ALTER TABLE flow_node DROP COLUMN skip_any_node;
ALTER TABLE flow_node ADD ext nvarchar(500) NULL;
EXEC sp_addextendedproperty
'MS_Description', N'扩展属性',
'SCHEMA', N'dbo',
'TABLE', N'flow_node',
'COLUMN', N'ext'
GO