From f8a49665446b4fda390343be2cee63c85892f74a Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Tue, 19 Nov 2019 13:56:40 +0100 Subject: [PATCH] Convert more columns to bigint Signed-off-by: Roeland Jago Douma --- core/Command/Db/ConvertFilecacheBigInt.php | 4 ++++ settings/Controller/CheckSetupController.php | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/core/Command/Db/ConvertFilecacheBigInt.php b/core/Command/Db/ConvertFilecacheBigInt.php index 93ada896327..da86aa9570c 100644 --- a/core/Command/Db/ConvertFilecacheBigInt.php +++ b/core/Command/Db/ConvertFilecacheBigInt.php @@ -56,7 +56,11 @@ class ConvertFilecacheBigInt extends Command { return [ 'activity' => ['activity_id', 'object_id'], 'activity_mq' => ['mail_id'], + 'authtoken' => ['id'], + 'bruteforce_attempts' => ['id'], 'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'], + 'file_locks' => ['id'], + 'jobs' => ['id'], 'mimetypes' => ['id'], 'storages' => ['numeric_id'], ]; diff --git a/settings/Controller/CheckSetupController.php b/settings/Controller/CheckSetupController.php index 3488e41a99d..6b35f6d76d4 100644 --- a/settings/Controller/CheckSetupController.php +++ b/settings/Controller/CheckSetupController.php @@ -592,7 +592,11 @@ Raw output $tables = [ 'activity' => ['activity_id', 'object_id'], 'activity_mq' => ['mail_id'], + 'authtoken' => ['id'], + 'bruteforce_attempts' => ['id'], 'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'], + 'file_locks' => ['id'], + 'jobs' => ['id'], 'mimetypes' => ['id'], 'storages' => ['numeric_id'], ]; -- 2.39.5