mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
update 优化 sys_oss 表增加扩展字段 ext1
This commit is contained in:
@ -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',
|
||||
|
Reference in New Issue
Block a user