* @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_5_1() { $db = Db::getInstance(); $db->delete('eventbus_deleted_objects', 'id_object = 0'); $db->delete('eventbus_incremental_sync', 'id_object = 0'); return true; }