src/Doctrine/Platform/FixMariaDbPlatform.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Doctrine\Platform;
  3. use Doctrine\DBAL\Platforms\MariaDb1027Platform;
  4. class FixMariaDbPlatform extends MariaDb1027Platform
  5. {
  6.     public function getFullCollationDeclarationSQL(array $column): string
  7.     {
  8.         // Empêche Doctrine d’essayer de lire la colonne FULL_COLLATION_NAME
  9.         return '';
  10.     }
  11. }