Did you also Continue with steps 3 to 5 of the mysql section?
- Change your databases character set and collation:
ALTER DATABASE nextcloud CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
- Set the mysql.utf8mb4 config to true in your config.php:
sudo -u www-data php occ config:system:set mysql.utf8mb4 --type boolean --value="true"
- Convert all existing tables to the new collation by running the repair step:
sudo -u www-data php occ maintenance:repair