In Nextcloud 32.0.6, and richdocuments 9.0.5, the version column on oc_richdocuments_wopi is an int(11). However, latest collabora reports the version as "25.04.9.4", leading to errors abour an unauthorized WOPI host (but the issue is the database insert)
It can be fixed with the command below:
ALTER TABLE oc_richdocuments_wopi
MODIFY COLUMN version VARCHAR(50) DEFAULT '0';
In Nextcloud 32.0.6, and richdocuments 9.0.5, the version column on oc_richdocuments_wopi is an int(11). However, latest collabora reports the version as "25.04.9.4", leading to errors abour an unauthorized WOPI host (but the issue is the database insert)
It can be fixed with the command below:
ALTER TABLE oc_richdocuments_wopi
MODIFY COLUMN version VARCHAR(50) DEFAULT '0';