1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-31 22:54:11 +00:00

update sql org_saml_config (#5496)

This commit is contained in:
欢乐马
2023-06-07 10:21:48 +08:00
committed by GitHub
parent 8496e72c05
commit 340d37dedb
4 changed files with 8 additions and 4 deletions

View File

@@ -2,8 +2,10 @@ CREATE TABLE IF NOT EXISTS `org_saml_config` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`org_id` int(11) NOT NULL,
`metadata_url` longtext NOT NULL,
`domain` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `org_id` (`org_id`)
UNIQUE KEY `org_id` (`org_id`),
UNIQUE KEY `domain` (`domain`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `base_usermonitoredrepos` (