Skip to content

Instantly share code, notes, and snippets.

@vudaltsov
vudaltsov / FixPostgreSQLDefaultSchemaListener.php
Last active December 27, 2024 21:26
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