feat: 配置认证源

This commit is contained in:
Captain.B 2021-01-12 15:12:10 +08:00
parent d7dbcf0860
commit 67a9e1588e
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
CREATE TABLE IF NOT EXISTS `auth_source` (
`id` varchar(50) NOT NULL,
`configuration` text NOT NULL,
`status` varchar(64) NOT NULL,
`create_time` bigint(13) NOT NULL,
`update_time` bigint(13) NOT NULL,
`description` varchar(255) DEFAULT NULL,
`name` varchar(60) DEFAULT NULL,
`type` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`)
)
ENGINE = InnoDB
DEFAULT CHARSET = utf8mb4;