Browse Source
Convert more columns to bigint
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/18004/head
Roeland Jago Douma
7 years ago
No known key found for this signature in database
GPG Key ID: F941078878347C0C
2 changed files with
8 additions and
0 deletions
-
apps/settings/lib/Controller/CheckSetupController.php
-
core/Command/Db/ConvertFilecacheBigInt.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'], |
|
|
|
]; |
|
|
|
|
|
|
|
@ -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'], |
|
|
|
]; |
|
|
|
|