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

BigIntegerField

This commit is contained in:
skywalker
2021-04-07 12:00:33 +08:00
parent 7e3067643c
commit 1ab06f85db
6 changed files with 14 additions and 16 deletions

View File

@@ -1286,10 +1286,9 @@ CREATE TABLE `repo_auto_delete` (
CREATE TABLE `external_department` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group_id` int(11) NOT NULL,
`parent_group_id` int(11) NOT NULL,
`outer_id` int(11) NOT NULL,
`outer_parent_id` int(11) NOT NULL,
`provider` varchar(32) NOT NULL,
`outer_id` bigint(20) NOT NULL,
`outer_parent_id` bigint(20) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `group_id` (`group_id`),
UNIQUE KEY `external_department_provider_outer_id_8dns6vkw_uniq` (`provider`,`outer_id`)