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 b25f545c99de1bea1753d11d2baa8b46d765a925
1 change: 1 addition & 0 deletions core/Command/Db/ConvertFilecacheBigInt.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ protected function getColumnsByTable() {
'file_locks' => ['id'],
'jobs' => ['id'],
'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 @@ -598,6 +598,7 @@ protected function hasBigIntConversionPendingColumns(): array {
'file_locks' => ['id'],
'jobs' => ['id'],
'mimetypes' => ['id'],
'mounts' => ['id', 'storage_id', 'root_id', 'mount_id'],
'storages' => ['numeric_id'],
];

Expand Down