Skip to content
Snippets Groups Projects
Commit f420854b authored by Uma's avatar Uma
Browse files

Merge branch 'CalendarType_Deletion' into 'master'

Fixes #1435 Deletion of calendar type won't work

See merge request !699
parents 77a4df11 3694c422
No related branches found
No related tags found
No related merge requests found
......@@ -291,4 +291,10 @@ if (defined('VTIGER_UPGRADE')) {
}
}
echo "unwanted files..cleared.<br>";
//update conditions column of vtiger_calendar_default_activitytypes
$db->pquery('ALTER TABLE vtiger_calendar_default_activitytypes DROP COLUMN conditions', array());
$db->pquery('ALTER TABLE vtiger_calendar_default_activitytypes ADD COLUMN conditions VARCHAR(255) DEFAULT ""', array());
echo 'Conditions column in vtiger_calendar_default_activitytypes updated';
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment