Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Convert various columns in oc_mounts to bigint
Signed-off-by: Georg Ehrke <[email protected]>
  • Loading branch information
georgehrke authored and Backportbot committed Dec 9, 2019
commit aea0f487e3db1379f5a686158eeb4517497e3e99
1 change: 1 addition & 0 deletions core/Command/Db/ConvertFilecacheBigInt.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ protected function getColumnsByTable() {
'activity_mq' => ['mail_id'],
'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'],
'mimetypes' => ['id'],
'mounts' => ['id', 'storage_id', 'root_id', 'mount_id'],
'storages' => ['numeric_id'],
];
}
Expand Down
1 change: 1 addition & 0 deletions settings/Controller/CheckSetupController.php
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,7 @@ protected function hasBigIntConversionPendingColumns(): array {
'activity_mq' => ['mail_id'],
'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'],
'mimetypes' => ['id'],
'mounts' => ['id', 'storage_id', 'root_id', 'mount_id'],
'storages' => ['numeric_id'],
];

Expand Down