Hi,
maybe it’s help somone i have change in the both file the flush function to delete only the table with the wordpress prefix it’s work for me ??
all-in-one-wp-migration\lib\vendor\mysqldump-factory\mysqldump-factory\lib\MysqlDumpSQL.php and MysqlDumpPDO.php
around line 375 and 380
public function flush()
{
global $wpdb;
$dropTables = array();
foreach ($this->listTables() as $tableName) {
if (preg_match("/".$wpdb->prefix."/i", $tableName)) {
$dropTables[] = "DROP TABLE IF EXISTS '$tableName'";
}
}
Have nice day
Daniel