UPD: found that \Doctrine\DBAL\Schema\SchemaDiff::toSaveSql after updating DBAL changed variable saveMode from false to true
and the code below is evaluated:
if ($saveMode === false) {
$sql = array_merge($sql, $platform->getDropTablesSQL($this->getDroppedTables()));
}
After updating the to Symfony 7.1 Command
bin/console doctrine:schema:validate -v
return an error:I tried to filter the table, but migration command fails
Any help needed
UPD: found that \Doctrine\DBAL\Schema\SchemaDiff::toSaveSql after updating DBAL changed variable
saveMode
fromfalse
totrue
and the code below is evaluated: