1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 15:09:14 +00:00

update 10.0.0 sql (#5394)

This commit is contained in:
欢乐马
2023-03-09 16:25:02 +08:00
committed by GitHub
parent 873da514f0
commit d7116f4744
4 changed files with 25 additions and 0 deletions

View File

@@ -16,3 +16,13 @@ CREATE TABLE IF NOT EXISTS `base_usermonitoredrepos` (
KEY `base_usermonitoredrepos_email_55ead1b9` (`email`),
KEY `base_usermonitoredrepos_repo_id_00e624c3` (`repo_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `organizations_orgadminsettings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`org_id` int(11) NOT NULL,
`key` varchar(255) NOT NULL,
`value` longtext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `organizations_orgadminsettings_org_id_key_a01cc7de_uniq` (`org_id`,`key`),
KEY `organizations_orgadminsettings_org_id_4f70d186` (`org_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;