Skip to content

Instantly share code, notes, and snippets.

@vudaltsov
vudaltsov / FixPostgreSQLDefaultSchemaListener.php
Last active June 27, 2024 16:45
Doctrine PostgreSQL Default Schema Fix For Symfony
<?php
declare(strict_types=1);
namespace App\Doctrine\EventListener;
use Doctrine\DBAL\Schema\PostgreSQLSchemaManager;
use Doctrine\ORM\Tools\Event\GenerateSchemaEventArgs;
final class FixPostgreSQLDefaultSchemaListener