From a16039275f3d3792bf04fa243ccf13f295336694 Mon Sep 17 00:00:00 2001 From: musicman3 Date: Mon, 1 May 2023 17:09:47 +0300 Subject: [PATCH] update --- src/Cruder/Postgres/Methods.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Cruder/Postgres/Methods.php b/src/Cruder/Postgres/Methods.php index 1b05e14..ca910c6 100644 --- a/src/Cruder/Postgres/Methods.php +++ b/src/Cruder/Postgres/Methods.php @@ -380,10 +380,6 @@ public function dbInstall(string $path, string $db_prefix = 'emkt_'): mixed { $buffer = str_replace($db_prefix, $set['db_prefix'], implode(file($path))); - if ($set['db_family'] == 'myisam') { - $buffer = str_ireplace('ENGINE=InnoDB', 'ENGINE=MyISAM', $buffer); - } - Pdo::getExec($buffer); return true;