This commit is contained in:
Uryvskiy Dima 2023-09-20 19:44:30 +03:00
parent af11522e79
commit b1d630b4af

View file

@ -396,7 +396,6 @@ class RetailCRM extends Module
ON UPDATE CASCADE
) DEFAULT CHARSET=utf8;');
$resultQuery2 = Db::getInstance()->execute('
CREATE TABLE IF NOT EXISTS `' . _DB_PREFIX_ . 'retailcrm_exported_orders` (
`id_order` INT UNSIGNED UNIQUE NULL,
@ -409,7 +408,6 @@ class RetailCRM extends Module
) DEFAULT CHARSET=utf8;'
);
return $resultQuery1 && $resultQuery2;
}