Files
2019-11-17 19:14:07 +01:00

36 lines
847 B
PHP

<?php
/**
* Module My Easy ERP Web In Color
*
* @author Web In Color - addons@webincolor.fr
* @version 2.7.0
* @uses Prestashop modules
* @since 1.0 - mai 2014
* @package Wic ERP
* @copyright Copyright &copy; 2016, Web In Color
* @license http://www.webincolor.fr
*/
if (!defined('_PS_VERSION_')) {
exit;
}
/**
* object module available
*/
function upgrade_module_2_7($object)
{
$upgrade_version = '2.7';
try {
Db::getInstance()->execute('ALTER TABLE
`'._DB_PREFIX_.'erp_suppliers`
ADD `id_lang` INT(11) NULL DEFAULT '.(int)Configuration::get('PS_LANG_DEFAULT').' AFTER `id_supplier`');
} catch (Exception $e) {
$e->getMessage();
}
Configuration::updateValue('WIC_ERP_VERSION', $upgrade_version);
return true;
}