Skip to content
Snippets Groups Projects
Unverified Commit decdb6b4 authored by Roeland Jago Douma's avatar Roeland Jago Douma
Browse files

Convert more columns to bigint

parent 2b262656
No related branches found
No related tags found
No related merge requests found
......@@ -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'],
];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment