Skip to content
Snippets Groups Projects

#Fixes::1607::Yogeshwar::s_h_percent column only changed in Invoice module

Closed yogeshwar requested to merge yogeshwar/vtigercrm:1607 into master
Files
2
+ 18
0
<?php
if (defined('VTIGER_UPGRADE')) {
ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_WARNING);
ini_set('display_errors', 'On');
include_once 'include/utils/utils.php';
include_once 'includes/runtime/Viewer.php';
include_once 'includes/runtime/LanguageHandler.php';
global $adb, $current_user;
$db = PearDatabase::getInstance();
$db->pquery('ALTER TABLE vtiger_salesorder MODIFY s_h_percent DECIMAL(25,8)', array());
$db->pquery('ALTER TABLE vtiger_purchaseorder MODIFY s_h_percent DECIMAL(25,8)', array());
$db->pquery('ALTER TABLE vtiger_quotes MODIFY s_h_percent DECIMAL(25,8)', array());
}
Loading