diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php index e9a474eb8c00b..0828ef522f710 100644 --- a/apps/settings/lib/Controller/CheckSetupController.php +++ b/apps/settings/lib/Controller/CheckSetupController.php @@ -601,6 +601,7 @@ protected function hasBigIntConversionPendingColumns(): array { 'file_locks' => ['id'], 'jobs' => ['id'], 'mimetypes' => ['id'], + 'mounts' => ['id', 'storage_id', 'root_id', 'mount_id'], 'storages' => ['numeric_id'], ]; diff --git a/core/Command/Db/ConvertFilecacheBigInt.php b/core/Command/Db/ConvertFilecacheBigInt.php index 65218fa910c39..7d7ab6d89fd7a 100644 --- a/core/Command/Db/ConvertFilecacheBigInt.php +++ b/core/Command/Db/ConvertFilecacheBigInt.php @@ -65,6 +65,7 @@ protected function getColumnsByTable() { 'file_locks' => ['id'], 'jobs' => ['id'], 'mimetypes' => ['id'], + 'mounts' => ['id', 'storage_id', 'root_id', 'mount_id'], 'storages' => ['numeric_id'], ]; }