(Cases) We can not execute created cases because an error is displayed in an upgrade 3018 to 32
This commit is contained in:
dheeyi william
2017-04-12 10:02:20 -04:00
parent a7018c55e6
commit 0a3591b4ca

View File

@@ -145,6 +145,13 @@ class workspaceTools
$final = $stop - $start;
CLI::logging("<*> Check Mafe Requirements Process took $final seconds.\n");
$start = microtime(true);
CLI::logging("> Updating Triggers...\n");
$this->updateTriggers(true, $lang);
$stop = microtime(true);
$final = $stop - $start;
CLI::logging("<*> Updating Triggers Process took $final seconds.\n");
$start = microtime(true);
CLI::logging("> Backup log files...\n");
$this->backupLogFiles();
@@ -3784,4 +3791,14 @@ class workspaceTools
}
}
/**
* Updating triggers
* @param $flagRecreate
* @param $lang
*/
public function updateTriggers($flagRecreate, $lang)
{
$this->initPropel(true);
$this->upgradeTriggersOfTables($flagRecreate, $lang);
}
}