Skip to content

Commit 77bae5e

Browse files
authored
Merge pull request #18041 from nextcloud/backport/18004/stable16
[stable16] Convert more columns to bigint
2 parents 084e628 + f8a4966 commit 77bae5e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

core/Command/Db/ConvertFilecacheBigInt.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ protected function getColumnsByTable() {
5656
return [
5757
'activity' => ['activity_id', 'object_id'],
5858
'activity_mq' => ['mail_id'],
59+
'authtoken' => ['id'],
60+
'bruteforce_attempts' => ['id'],
5961
'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'],
62+
'file_locks' => ['id'],
63+
'jobs' => ['id'],
6064
'mimetypes' => ['id'],
6165
'storages' => ['numeric_id'],
6266
];

settings/Controller/CheckSetupController.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,11 @@ protected function hasBigIntConversionPendingColumns(): array {
592592
$tables = [
593593
'activity' => ['activity_id', 'object_id'],
594594
'activity_mq' => ['mail_id'],
595+
'authtoken' => ['id'],
596+
'bruteforce_attempts' => ['id'],
595597
'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'],
598+
'file_locks' => ['id'],
599+
'jobs' => ['id'],
596600
'mimetypes' => ['id'],
597601
'storages' => ['numeric_id'],
598602
];

0 commit comments

Comments
 (0)