Project

General

Profile

Actions

Database Column Conversion to Big Integers in Nextcloud

If Nextcloud has identified some database columns that need to be converted to big integers.
This change wasn't made automatically due to the time it can take for large tables.

We will enable maintenance mode to prevent user access during the conversion process:

Enable maintenance mode;

sudo -u www-data php occ maintenance:mode --on

Run the conversion command:

sudo -u www-data php occ db:convert-filecache-bigint

Once the conversion is complete, disable maintenance mode;

sudo -u www-data php occ maintenance:mode --off

Updated by Gareth Eaton 6 months ago · 2 revisions