数据库更新提交

This commit is contained in:
zer0Black
2022-03-29 14:15:16 +08:00
parent 20b42262e7
commit a2338e0ccc
3 changed files with 26 additions and 27 deletions
+16 -2
View File
@@ -1193,7 +1193,8 @@ CREATE TABLE [dbo].[onl_auth_relation] (
[role_id] nvarchar(32) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[auth_id] nvarchar(32) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[type] int NULL,
[cgform_id] nvarchar(32) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
[cgform_id] nvarchar(32) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[auth_mode] nvarchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
)
GO
@@ -1228,6 +1229,12 @@ EXEC sp_addextendedproperty
'COLUMN', N'cgform_id'
GO
EXEC sp_addextendedproperty
'MS_Description', N'授权方式role角色,depart部门,user人',
'SCHEMA', N'dbo',
'TABLE', N'onl_auth_relation',
'COLUMN', N'auth_mode'
GO
-- ----------------------------
-- Records of onl_auth_relation
@@ -7096,7 +7103,8 @@ CREATE TABLE [dbo].[sys_third_account] (
[status] tinyint NULL,
[del_flag] tinyint NULL,
[realname] nvarchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[third_user_uuid] nvarchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
[third_user_uuid] nvarchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[third_user_id] nvarchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
)
GO
@@ -7159,6 +7167,12 @@ EXEC sp_addextendedproperty
'COLUMN', N'third_user_uuid'
GO
EXEC sp_addextendedproperty
'MS_Description', N'第三方app用户账号',
'SCHEMA', N'dbo',
'TABLE', N'sys_third_account',
'COLUMN', N'third_user_id'
GO
-- ----------------------------
-- Records of sys_third_account