<?php
namespace App\Doctrine\Platform;
use Doctrine\DBAL\Platforms\MariaDb1027Platform;
class FixMariaDbPlatform extends MariaDb1027Platform
{
public function getFullCollationDeclarationSQL(array $column): string
{
// Empêche Doctrine d’essayer de lire la colonne FULL_COLLATION_NAME
return '';
}
}