feat: 配置认证源
This commit is contained in:
parent
d7dbcf0860
commit
67a9e1588e
|
@ -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;
|
||||
|
Loading…
Reference in New Issue