Hello,
with the following queries you can modify the database field type from int(11) to bigint(20):
ALTER TABLE `oc_filecache` MODIFY `mtime` bigint NOT NULL DEFAULT '0';
ALTER TABLE `oc_filecache` MODIFY `storage_mtime` bigint NOT NULL DEFAULT '0';
This will solve the “occ db: convert-filecache-bigint” part.