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 committed Dec 9, 2019
commit 699f3a6817e2d8e8882cf2bb24fdae6342949a6f
1 change: 1 addition & 0 deletions apps/settings/lib/Controller/CheckSetupController.php
Original file line number Diff line number Diff line change
Expand Up @@ -601,6 +601,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
1 change: 1 addition & 0 deletions core/Command/Db/ConvertFilecacheBigInt.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ protected function getColumnsByTable() {
'file_locks' => ['id'],
'jobs' => ['id'],
'mimetypes' => ['id'],
'mounts' => ['id', 'storage_id', 'root_id', 'mount_id'],
'storages' => ['numeric_id'],
];
}
Expand Down