You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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()));
}
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: