Skip to content
Snippets Groups Projects
Commit 7abbf393 authored by Prasad's avatar Prasad
Browse files

Fixes #1743: Index on recordid of vtiger_inventorychargesrel

parent 004be649
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,7 @@ class Migration_Module_Model extends Vtiger_Module_Model {
array('73' => '7.3'),
array('730' => '7.3.0'),
array('740' => '7.4.0'),
array('750' => '7.5.0'),
);
return $versions;
}
......
<?php
/*+********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*********************************************************************************/
if (defined('VTIGER_UPGRADE')) {
global $current_user, $adb;
$db = PearDatabase::getInstance();
$db->pquery("ALTER TABLE vtiger_inventorychargesrel ADD KEY record_idx (recordid)", array());
}
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