Skip to content

vt7 dev release - Error in Migration script 660_to_700.php

On line 1279 this commend will never work as the query syntax is invalid:

$db->pquery('ALTER TABLE com_vtiger_workflows ADD COLUMN status SET DEFAULT 1', array());

needs to be:

ALTER TABLE com_vtiger_workflows ADD COLUMN status INT(255) DEFAULT 1; (If it does indeed need to be an INT(255)?)