Skip to content

Commit decdb6b

Browse files
committed
Convert more columns to bigint
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
1 parent 2b26265 commit decdb6b

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

apps/settings/lib/Controller/CheckSetupController.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,11 @@ protected function hasBigIntConversionPendingColumns(): array {
589589
$tables = [
590590
'activity' => ['activity_id', 'object_id'],
591591
'activity_mq' => ['mail_id'],
592+
'authtoken' => ['id'],
593+
'bruteforce_attempts' => ['id'],
592594
'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'],
595+
'file_locks' => ['id'],
596+
'jobs' => ['id'],
593597
'mimetypes' => ['id'],
594598
'storages' => ['numeric_id'],
595599
];

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
];

0 commit comments

Comments
 (0)