mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-09-01 23:46:53 +00:00
Update seafile.sql.
This commit is contained in:
@@ -90,6 +90,7 @@ CREATE TABLE `RepoInfo` (
|
||||
`version` int(11) DEFAULT NULL,
|
||||
`is_encrypted` int(11) DEFAULT NULL,
|
||||
`last_modifier` varchar(255) DEFAULT NULL,
|
||||
`status` INTEGER DEFAULT 0,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `repo_id` (`repo_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
@@ -39,7 +39,7 @@ CREATE INDEX repotrash_org_id_idx ON RepoTrash(org_id);
|
||||
|
||||
CREATE TABLE RepoFileCount (repo_id CHAR(36) PRIMARY KEY,file_count BIGINT UNSIGNED);
|
||||
|
||||
CREATE TABLE RepoInfo (repo_id CHAR(36) PRIMARY KEY, name VARCHAR(255) NOT NULL, update_time INTEGER, version INTEGER, is_encrypted INTEGER, last_modifier VARCHAR(255));
|
||||
CREATE TABLE RepoInfo (repo_id CHAR(36) PRIMARY KEY, name VARCHAR(255) NOT NULL, update_time INTEGER, version INTEGER, is_encrypted INTEGER, last_modifier VARCHAR(255), status INTEGER DEFAULT 0);
|
||||
|
||||
CREATE TABLE UserQuota (user VARCHAR(255) PRIMARY KEY,quota BIGINT);
|
||||
|
||||
|
Reference in New Issue
Block a user