diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-11-19 13:56:40 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-11-20 19:31:17 +0100 |
commit | decdb6b40f11477d14fee1862f477b40a9f4e027 (patch) | |
tree | cf9b88a2374717b2892baecf1ae1054be81dcf58 /apps | |
parent | 2b2626566c19280ff207cbfa2c0c235ecae2a79b (diff) | |
download | nextcloud-server-decdb6b40f11477d14fee1862f477b40a9f4e027.tar.gz nextcloud-server-decdb6b40f11477d14fee1862f477b40a9f4e027.zip |
Convert more columns to bigint
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/settings/lib/Controller/CheckSetupController.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php index 620920f777b..42dc5e1030b 100644 --- a/apps/settings/lib/Controller/CheckSetupController.php +++ b/apps/settings/lib/Controller/CheckSetupController.php @@ -589,7 +589,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'], ]; |