ENGINE=InnoDB
'; if(!Vtiger_Utils::CheckTable($table)) { $schema_obj = new adoSchema($adb->database); $schema_obj->ExecuteSchema($schema_obj->ParseSchemaString($schema_table)); } $table = $table_prefix.'_soapws_operation_params'; $schema_table = ' ENGINE=InnoDB
'; if(!Vtiger_Utils::CheckTable($table)) { $schema_obj = new adoSchema($adb->database); $schema_obj->ExecuteSchema($schema_obj->ParseSchemaString($schema_table)); } // install standard ws require_once('soap/SOAPWebservices.php'); SOAPWebservices::installWS(); Update::info('The SOAP Webservices used in the customer portal now are stored into the database and can be added dynamically.'); Update::info('If you have customizations on them, please check the latest SDK manual to know how to update them to the new system.');