Commit 6e7524d6 by Yvon

a migration should not be deleted

parent 96c898d0
<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
//Migration sans conséquence vidée de son contenu suite à un retour en arrière sur une fonctionnalité
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20221211160940 extends AbstractMigration
{
public function getDescription() : string
{
return '';
}
public function up(Schema $schema) : void
{
// this up() migration is auto-generated, please modify it to your needs
}
public function down(Schema $schema) : void
{
// this down() migration is auto-generated, please modify it to your needs
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment