update 优化 sys_oss 表增加扩展字段 ext1

This commit is contained in:
疯狂的狮子Li
2025-03-04 09:51:46 +08:00
parent 9dcb7c6a12
commit 65c54184e8
11 changed files with 45 additions and 0 deletions

View File

@ -2923,6 +2923,7 @@ CREATE TABLE sys_oss
original_name nvarchar(255) DEFAULT '' NOT NULL,
file_suffix nvarchar(10) DEFAULT '' NOT NULL,
url nvarchar(500) NOT NULL,
ext1 nvarchar(255) DEFAULT '' NULL,
create_dept bigint NULL,
create_time datetime2(7) NULL,
create_by bigint NULL,
@ -2972,6 +2973,12 @@ EXEC sp_addextendedproperty
'TABLE', N'sys_oss',
'COLUMN', N'url'
GO
EXEC sp_addextendedproperty
'MS_Description', N'扩展字段',
'SCHEMA', N'dbo',
'TABLE', N'sys_oss',
'COLUMN', N'ext1'
GO
EXEC sys.sp_addextendedproperty
'MS_Description', N'创建部门' ,
'SCHEMA', N'dbo',