mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-31 22:54:11 +00:00
add seafile scripts
This commit is contained in:
4
scripts/upgrade/sql/7.0.0/mysql/seafile.sql
Normal file
4
scripts/upgrade/sql/7.0.0/mysql/seafile.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
ALTER TABLE RepoInfo ADD COLUMN status INTEGER DEFAULT 0;
|
||||
CREATE TABLE IF NOT EXISTS RepoSyncError (id BIGINT NOT NULL PRIMARY KEY AUTO_INCREMENT, token CHAR(41), error_time BIGINT UNSIGNED, error_con VARCHAR(1024), UNIQUE INDEX(token));
|
||||
ALTER TABLE RepoSyncError MODIFY COLUMN error_con VARCHAR(1024);
|
||||
CREATE TABLE IF NOT EXISTS WebUploadTempFiles (id BIGINT NOT NULL PRIMARY KEY AUTO_INCREMENT, repo_id CHAR(40) NOT NULL, file_path TEXT NOT NULL, tmp_file_path TEXT NOT NULL);
|
Reference in New Issue
Block a user