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

Merge pull request #18004 from nextcloud/enh/more_bigint_columns

Convert more columns to bigint
parents baf70921 decdb6b4
No related branches found
No related tags found
No related merge requests found
...@@ -589,7 +589,11 @@ Raw output ...@@ -589,7 +589,11 @@ Raw output
$tables = [ $tables = [
'activity' => ['activity_id', 'object_id'], 'activity' => ['activity_id', 'object_id'],
'activity_mq' => ['mail_id'], 'activity_mq' => ['mail_id'],
'authtoken' => ['id'],
'bruteforce_attempts' => ['id'],
'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'], 'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'],
'file_locks' => ['id'],
'jobs' => ['id'],
'mimetypes' => ['id'], 'mimetypes' => ['id'],
'storages' => ['numeric_id'], 'storages' => ['numeric_id'],
]; ];
......
...@@ -56,7 +56,11 @@ class ConvertFilecacheBigInt extends Command { ...@@ -56,7 +56,11 @@ class ConvertFilecacheBigInt extends Command {
return [ return [
'activity' => ['activity_id', 'object_id'], 'activity' => ['activity_id', 'object_id'],
'activity_mq' => ['mail_id'], 'activity_mq' => ['mail_id'],
'authtoken' => ['id'],
'bruteforce_attempts' => ['id'],
'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'], 'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'],
'file_locks' => ['id'],
'jobs' => ['id'],
'mimetypes' => ['id'], 'mimetypes' => ['id'],
'storages' => ['numeric_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