From 2278bee89063094fc9e83bdc029efb323b731561 Mon Sep 17 00:00:00 2001 From: Michael Kuhn Date: Sun, 9 Oct 2022 13:37:05 +0200 Subject: [PATCH] Fix hasBigIntConversionPendingColumns missing files_trash The two tables seem to have gone out of sync, causing the web interface to miss `files_trash.auto_id` not being a bigint. Signed-off-by: Michael Kuhn --- apps/settings/lib/Controller/CheckSetupController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php index dd401b045f0b2..eb1970713344f 100644 --- a/apps/settings/lib/Controller/CheckSetupController.php +++ b/apps/settings/lib/Controller/CheckSetupController.php @@ -769,6 +769,7 @@ protected function hasBigIntConversionPendingColumns(): array { 'federated_reshares' => ['share_id'], 'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'], 'filecache_extended' => ['fileid'], + 'files_trash' => ['auto_id'], 'file_locks' => ['id'], 'file_metadata' => ['id'], 'jobs' => ['id'],