This commit is contained in:
2025-04-01 00:38:54 +02:00
parent d4d4c0c09d
commit 87da06293a
22351 changed files with 5168854 additions and 7538 deletions

View File

@@ -0,0 +1,26 @@
<?php
/**
* NOTICE OF LICENSE
*
* This source file is subject to a trade license awared by
* Garamo Online L.T.D.
*
* Any use, reproduction, modification or distribution
* of this source file without the written consent of
* Garamo Online L.T.D It Is prohibited.
*
* @author ReactionCode <info@reactioncode.com>
* @copyright 2015-2020 Garamo Online L.T.D
* @license Commercial license
*/
$sql = array();
$sql[] = 'DROP TABLE IF EXISTS `'._DB_PREFIX_.'rc_pganalytics_orders_sent`';
$sql[] = 'DROP TABLE IF EXISTS `'._DB_PREFIX_.'rc_pganalytics_client_id`';
foreach ($sql as $query) {
if (Db::getInstance()->execute($query) == false) {
return false;
}
}