1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-01 07:26:37 +00:00

Update seafile.sql.

This commit is contained in:
cuihaikuo
2019-03-29 10:30:16 +08:00
parent f92e52cda8
commit 8367640c16
2 changed files with 2 additions and 1 deletions

View File

@@ -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);