* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ if (!defined('_PS_VERSION_')) { exit; } /** * @return bool */ function upgrade_module_1_7_11() { $db = Db::getInstance(); $db->update('eventbus_type_sync', ['full_sync_finished' => 0], '`type` = "orders"'); return true; }