Files
newwalls.pl/modules/ph_simpleblog/upgrade/install-1.1.0.php
2024-12-17 13:43:22 +01:00

18 lines
584 B
PHP

<?php
/**
* Blog for PrestaShop module by Krystian Podemski from PrestaHome.
*
* @author Krystian Podemski <krystian@prestahome.com>
* @copyright Copyright (c) 2014-2016 Krystian Podemski - www.PrestaHome.com / www.Podemski.info
* @license You only can use module, nothing more!
*/
if (!defined('_PS_VERSION_')) {
exit;
}
function upgrade_module_1_1_0($object)
{
return Configuration::updateValue('PH_BLOG_LOAD_FA', '1')
&& Db::getInstance()->execute('ALTER TABLE `'._DB_PREFIX_.'simpleblog_post` ADD is_featured tinyint(1) NOT NULL DEFAULT \'0\'');
}