diff options
author | Michael Kuhn <github@ikkoku.de> | 2022-10-09 13:37:05 +0200 |
---|---|---|
committer | Michael Kuhn <github@ikkoku.de> | 2022-10-09 13:37:05 +0200 |
commit | 9a205bdc8484977f0e868524688b3bfebeea3412 (patch) | |
tree | 74ebdf3b8e76027e0271970dc2a3af093435d049 /apps/settings/lib | |
parent | 00485eff56436dca388127c557712ab0b00666e7 (diff) | |
download | nextcloud-server-9a205bdc8484977f0e868524688b3bfebeea3412.tar.gz nextcloud-server-9a205bdc8484977f0e868524688b3bfebeea3412.zip |
Fix hasBigIntConversionPendingColumns missing files_trash
The two tables seem to have gone out of sync, causing the web interface
to miss `files_trash.auto_id` not being a bigint.
Signed-off-by: Michael Kuhn <github@ikkoku.de>
Diffstat (limited to 'apps/settings/lib')
-rw-r--r-- | apps/settings/lib/Controller/CheckSetupController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php index 0b3d63ac06d..e83b2a1aa7e 100644 --- a/apps/settings/lib/Controller/CheckSetupController.php +++ b/apps/settings/lib/Controller/CheckSetupController.php @@ -769,6 +769,7 @@ Raw output 'federated_reshares' => ['share_id'], 'filecache' => ['fileid', 'storage', 'parent', 'mimetype', 'mimepart', 'mtime', 'storage_mtime'], 'filecache_extended' => ['fileid'], + 'files_trash' => ['auto_id'], 'file_locks' => ['id'], 'file_metadata' => ['id'], 'jobs' => ['id'], |