diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-11-20 21:33:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-20 21:33:02 +0100 |
commit | e358d79114ae7a17e418385e75130d56e5dc7fb5 (patch) | |
tree | 81383543c71cc79109d02c87013a8b7c6cf23185 | |
parent | baf709213669ced60ce6a234bc976be8e7689950 (diff) | |
parent | decdb6b40f11477d14fee1862f477b40a9f4e027 (diff) | |
download | nextcloud-server-e358d79114ae7a17e418385e75130d56e5dc7fb5.tar.gz nextcloud-server-e358d79114ae7a17e418385e75130d56e5dc7fb5.zip |
Merge pull request #18004 from nextcloud/enh/more_bigint_columns
Convert more columns to bigint
-rw-r--r-- | apps/settings/lib/Controller/CheckSetupController.php | 4 | ||||
-rw-r--r-- | core/Command/Db/ConvertFilecacheBigInt.php | 4 |
2 files changed, 8 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'], ]; 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'], ]; |