mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-08-31 23:19:36 +00:00
Create tables by script.
This commit is contained in:
227
scripts/sql/mysql/seafile.sql
Normal file
227
scripts/sql/mysql/seafile.sql
Normal file
@@ -0,0 +1,227 @@
|
||||
CREATE TABLE `Branch` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(10) DEFAULT NULL,
|
||||
`repo_id` char(41) DEFAULT NULL,
|
||||
`commit_id` char(41) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`,`name`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `GarbageRepos` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(36) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `InnerPubRepo` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(37) DEFAULT NULL,
|
||||
`permission` char(15) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `OrgQuota` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`org_id` int(11) DEFAULT NULL,
|
||||
`quota` bigint(20) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `org_id` (`org_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `OrgUserQuota` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`org_id` int(11) DEFAULT NULL,
|
||||
`user` varchar(255) DEFAULT NULL,
|
||||
`quota` bigint(20) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `org_id` (`org_id`,`user`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `Repo` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(37) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `RepoFileCount` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(36) DEFAULT NULL,
|
||||
`file_count` bigint(20) unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `RepoGroup` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(37) DEFAULT NULL,
|
||||
`group_id` int(11) DEFAULT NULL,
|
||||
`user_name` varchar(255) DEFAULT NULL,
|
||||
`permission` char(15) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `group_id` (`group_id`,`repo_id`),
|
||||
KEY `repo_id` (`repo_id`),
|
||||
KEY `user_name` (`user_name`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `RepoHead` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(37) DEFAULT NULL,
|
||||
`branch_name` varchar(10) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `RepoHistoryLimit` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(37) DEFAULT NULL,
|
||||
`days` int(11) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `RepoInfo` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(36) DEFAULT NULL,
|
||||
`name` varchar(255) NOT NULL,
|
||||
`update_time` bigint(20) DEFAULT NULL,
|
||||
`version` int(11) DEFAULT NULL,
|
||||
`is_encrypted` int(11) DEFAULT NULL,
|
||||
`last_modifier` varchar(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `RepoOwner` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(37) DEFAULT NULL,
|
||||
`owner_id` varchar(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`),
|
||||
KEY `owner_id` (`owner_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `RepoSize` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(37) DEFAULT NULL,
|
||||
`size` bigint(20) unsigned DEFAULT NULL,
|
||||
`head_id` char(41) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `RepoTokenPeerInfo` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`token` char(41) DEFAULT NULL,
|
||||
`peer_id` char(41) DEFAULT NULL,
|
||||
`peer_ip` varchar(41) DEFAULT NULL,
|
||||
`peer_name` varchar(255) DEFAULT NULL,
|
||||
`sync_time` bigint(20) DEFAULT NULL,
|
||||
`client_ver` varchar(20) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `token` (`token`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `RepoTrash` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(36) DEFAULT NULL,
|
||||
`repo_name` varchar(255) DEFAULT NULL,
|
||||
`head_id` char(40) DEFAULT NULL,
|
||||
`owner_id` varchar(255) DEFAULT NULL,
|
||||
`size` bigint(20) DEFAULT NULL,
|
||||
`org_id` int(11) DEFAULT NULL,
|
||||
`del_time` bigint(20) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`),
|
||||
KEY `owner_id` (`owner_id`),
|
||||
KEY `org_id` (`org_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `RepoUserToken` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(37) DEFAULT NULL,
|
||||
`email` varchar(255) DEFAULT NULL,
|
||||
`token` char(41) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`,`token`),
|
||||
KEY `email` (`email`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `RepoValidSince` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(37) DEFAULT NULL,
|
||||
`timestamp` bigint(20) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `SeafileConf` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`cfg_group` varchar(255) NOT NULL,
|
||||
`cfg_key` varchar(255) NOT NULL,
|
||||
`value` varchar(255) DEFAULT NULL,
|
||||
`property` int(11) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `SharedRepo` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(37) DEFAULT NULL,
|
||||
`from_email` varchar(255) DEFAULT NULL,
|
||||
`to_email` varchar(255) DEFAULT NULL,
|
||||
`permission` char(15) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `repo_id` (`repo_id`),
|
||||
KEY `from_email` (`from_email`),
|
||||
KEY `to_email` (`to_email`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `SystemInfo` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`info_key` varchar(256) DEFAULT NULL,
|
||||
`info_value` varchar(1024) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `UserQuota` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`user` varchar(255) DEFAULT NULL,
|
||||
`quota` bigint(20) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `user` (`user`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `UserShareQuota` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`user` varchar(255) DEFAULT NULL,
|
||||
`quota` bigint(20) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `user` (`user`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `VirtualRepo` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(36) DEFAULT NULL,
|
||||
`origin_repo` char(36) DEFAULT NULL,
|
||||
`path` text,
|
||||
`base_commit` char(40) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`),
|
||||
KEY `origin_repo` (`origin_repo`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `WebAP` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`repo_id` char(37) DEFAULT NULL,
|
||||
`access_property` char(10) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE `WebUploadTempFiles` (
|
||||
`repo_id` char(40) NOT NULL,
|
||||
`file_path` text NOT NULL,
|
||||
`tmp_file_path` text NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user