fix 修复 sql命名错误

This commit is contained in:
疯狂的狮子Li
2026-03-19 09:40:38 +08:00
parent f1c2f0d458
commit 96f2e8ac41
3 changed files with 7 additions and 7 deletions

View File

@@ -2424,7 +2424,7 @@ EXEC sys.sp_addextendedproperty
'MS_Description', N'手机号码' ,
'SCHEMA', N'dbo',
'TABLE', N'sys_user',
'COLUMN', N'phoneNumber'
'COLUMN', N'phone_number'
GO
EXEC sys.sp_addextendedproperty
'MS_Description', N'用户性别0男 1女 2未知' ,
@@ -2693,7 +2693,7 @@ CREATE TABLE sys_oss_config
bucket_name nvarchar(255) DEFAULT '' NULL,
prefix nvarchar(255) DEFAULT '' NULL,
endpoint nvarchar(255) DEFAULT '' NULL,
domainUrl nvarchar(255) DEFAULT '' NULL,
domain_url nvarchar(255) DEFAULT '' NULL,
is_https nchar(1) DEFAULT ('N') NULL,
region nvarchar(255) DEFAULT '' NULL,
access_policy nchar(1) DEFAULT ('1') NOT NULL,
@@ -2758,7 +2758,7 @@ EXEC sp_addextendedproperty
'MS_Description', N'自定义域名',
'SCHEMA', N'dbo',
'TABLE', N'sys_oss_config',
'COLUMN', N'domain'
'COLUMN', N'domain_url'
GO
EXEC sp_addextendedproperty
'MS_Description', N'是否httpsY=是,N=否)',