<?php
declare(strict_types=1);
namespace Application\Migrations;
use App\Doctrine\Migrations\AbstractMigration;
use App\Service\ContractRenderer;
use Doctrine\DBAL\Schema\Schema;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20220922184514 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->resetContractTemplate(ContractRenderer::TEMPLATE_SANCTIONS);
$this->resetContractTemplate(ContractRenderer::TEMPLATE_SANCTIONS_OR);
$this->resetContractTemplate(ContractRenderer::TEMPLATE_SANCTIONS_MEMBER);
}
public function down(Schema $schema): void
{
}
}