vtenext/modules/Update/changes/1965_1966.php
2021-04-28 20:10:26 +02:00

15 lines
389 B
PHP

<?php
// crmv@195073
global $adb, $table_prefix;
if (isModuleInstalled('VteSync')) {
if (Vtiger_Utils::CheckTable($table_prefix.'_vtesync_vsl_lastsync')) {
$adb->addColumnToTable($table_prefix.'_vtesync_vsl_lastsync', 'last_page', 'C(64)');
}
require_once('modules/VteSync/VteSync.php');
$vsync = VteSync::getInstance();
$vsync->vtlib_handler('VteSync', 'module.postupdate');
}