Skip to content

Instantly share code, notes, and snippets.

View Brewal's full-sized avatar

Brewal RENAULT Brewal

  • Quimper
View GitHub Profile
@Brewal
Brewal / FixDoctrineMigrationTableSchema.php
Created March 15, 2024 10:18
Fix doctrine migrations schema table for Doctrine 3 and DBAL 4
<?php
declare(strict_types=1);
namespace App\Shared\Infrastructure\Doctrine\EventListener;
use Doctrine\DBAL\Exception;
use Doctrine\DBAL\Schema\SchemaException;
use Doctrine\Migrations\DependencyFactory;
use Doctrine\Migrations\Metadata\Storage\TableMetadataStorageConfiguration;
@Brewal
Brewal / IgnoreFieldsListener.php
Last active November 20, 2023 14:12
Doctrine : ignore table columns
<?php
declare(strict_types=1);
namespace App\Doctrine\EventListener;
use Doctrine\DBAL\Exception;
use Doctrine\DBAL\Schema\AbstractSchemaManager;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\DBAL\Schema\SchemaException;