From 699f3a6817e2d8e8882cf2bb24fdae6342949a6f Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Mon, 9 Dec 2019 14:03:13 +0100 Subject: [PATCH] Convert various columns in oc_mounts to bigint Signed-off-by: Georg Ehrke --- apps/settings/lib/Controller/CheckSetupController.php | 1 + core/Command/Db/ConvertFilecacheBigInt.php | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php index e9a474eb8c..0828ef522f 100644 --- a/apps/settings/lib/Controller/CheckSetupController.php +++ b/apps/settings/lib/Controller/CheckSetupController.php @@ -601,6 +601,7 @@ Raw output '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 65218fa910..7d7ab6d89f 100644 --- a/core/Command/Db/ConvertFilecacheBigInt.php +++ b/core/Command/Db/ConvertFilecacheBigInt.php @@ -65,6 +65,7 @@ class ConvertFilecacheBigInt extends Command { 'file_locks' => ['id'], 'jobs' => ['id'], 'mimetypes' => ['id'], + 'mounts' => ['id', 'storage_id', 'root_id', 'mount_id'], 'storages' => ['numeric_id'], ]; }