chore: 更新 SQL 脚本,适配 v0.8.0 版本

This commit is contained in:
konbai
2023-01-07 21:47:44 +08:00
parent 3fd2d9681d
commit 97afdf623c
8 changed files with 48 additions and 23 deletions

View File

@@ -0,0 +1,9 @@
ALTER TABLE [sys_oss_config] ADD [access_policy] nchar(1) DEFAULT ('1') NOT NULL
GO
EXEC sp_addextendedproperty
'MS_Description', N'桶权限类型(0=private 1=public 2=custom)',
'SCHEMA', N'dbo',
'TABLE', N'sys_oss_config',
'COLUMN', N'access_policy'
GO