feat : finalisation de l'étape 1 "Réception" (formulaire)

This commit is contained in:
2026-01-27 16:59:36 +01:00
parent 9ae073e69e
commit f901d52324
46 changed files with 1977 additions and 88 deletions

View File

@@ -0,0 +1,26 @@
<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20260127000700 extends AbstractMigration
{
public function getDescription(): string
{
return 'Allow null carrier code';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE carrier ALTER code DROP NOT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE carrier ALTER code SET NOT NULL');
}
}