25 lines
704 B
PHP
25 lines
704 B
PHP
<?php
|
|
/**
|
|
* 2012 - 2020 HiPresta
|
|
*
|
|
* MODULE Gallery
|
|
*
|
|
* @author HiPresta <support@hipresta.com>
|
|
* @copyright HiPresta 2020
|
|
* @license Addons PrestaShop license limitation
|
|
* @link https://hipresta.com
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* Don't use this module on several shops. The license provided by PrestaShop Addons
|
|
* for all its modules is valid only once for a single shop.
|
|
*/
|
|
|
|
function upgrade_module_1_0_3($module)
|
|
{
|
|
Db::getInstance()->Execute('ALTER TABLE `'._DB_PREFIX_.'higallery_lang` ADD `title` VARCHAR( 255 ) NOT NULL AFTER `link_rewrite`');
|
|
Db::getInstance()->Execute('ALTER TABLE `'._DB_PREFIX_.'higallery_lang` ADD `description` text NOT NULL AFTER `title`');
|
|
|
|
return true;
|
|
}
|