Hi, I just tried to upgrade from V1.11 to the latest 1.14.1. By mistake I messed up my mysqldump and ended up not having a valid DB backup without noticing it. Sure enough, the upgrade crashed, see log below. I tried deleting the table but the upgrader is now blocked and asks to reload the backup.
[core]: Upgrader Error
[/** * @signature 86707325fc571e56242fccc46fd24466 *
@version v1.11.0 * @title Add ticket referral * * This patch adds a table for thread referral as well as thread event states of referred and deleted */ CREATE TABLE ost_thread_referral
( id
int(10) unsigned NOT NULL AUTO_INCREMENT, thread_id
int(11) unsigned NOT NULL, object_id
int(11) unsigned NOT NULL, object_type
char(1) NOT NULL, created
datetime NOT NULL, PRIMARY KEY (id
), UNIQUE KEY ref
(object_id
, object_type
, thread_id
), KEY thread_id
(thread_id
) ) ENGINE=InnoDB DEFAULT CHARSET=utf8] Table 'ost_thread_referral' already exists
Log Date: Wed, 8 Apr 2020 11:36AM IP Address: 107.179.247.185
My two main questions are:
1- Can I somehow still extract the tickets info and Knowledge base from the current messed up DB and import it to a previous backup from last week?
2- Is there a way to retry the upgrade on the existing DB?
Thanks in advance for your help!