diff options
author | Joas Schilling <coding@schilljs.com> | 2017-10-13 11:24:51 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-10-13 11:24:51 +0200 |
commit | ab8ca3b5c2450034033a60c1e7eba070418d5e8e (patch) | |
tree | 091bf3211b68d33744e5490c9652013cf1c911fb /core/Migrations/Version13000Date20170926101637.php | |
parent | 547f5afa5b9639093c2fb07723dacf559cd6c282 (diff) | |
download | nextcloud-server-ab8ca3b5c2450034033a60c1e7eba070418d5e8e.tar.gz nextcloud-server-ab8ca3b5c2450034033a60c1e7eba070418d5e8e.zip |
Don't change the filecache schema on update
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/Migrations/Version13000Date20170926101637.php')
-rw-r--r-- | core/Migrations/Version13000Date20170926101637.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Migrations/Version13000Date20170926101637.php b/core/Migrations/Version13000Date20170926101637.php index 3eea8a8a3b9..ded34cedd39 100644 --- a/core/Migrations/Version13000Date20170926101637.php +++ b/core/Migrations/Version13000Date20170926101637.php @@ -22,15 +22,15 @@ class Version13000Date20170926101637 extends BigIntMigration { 'authtoken' => ['id'], 'bruteforce_attempts' => ['id'], 'comments' => ['id', 'parent_id', 'topmost_parent_id'], - 'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart'], + // Disabled for now 'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart'], 'file_locks' => ['id'], 'jobs' => ['id'], - 'mimetypes' => ['id'], + // Disabled for now 'mimetypes' => ['id'], 'mounts' => ['id'], 'personal_settings' => ['id'], 'properties' => ['id'], 'share' => ['id', 'parent', 'file_source'], - 'storages' => ['numeric_id'], + // Disabled for now 'storages' => ['numeric_id'], 'systemtag' => ['id'], 'systemtag_group' => ['systemtagid'], 'systemtag_object_mapping' => ['systemtagid'], |