<?php
declare(strict_types=1);
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20221004082212 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
$this->addSql('ALTER TABLE legal_entity_order_line ADD section_one_dot_two_and_one_dot_four_reminder_send TINYINT(1) DEFAULT NULL, ADD section_one_dot_two_and_one_dot_four_reminder_at DATE DEFAULT NULL COMMENT \'(DC2Type:carbondate)\'');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE legal_entity_order_line DROP section_one_dot_two_and_one_dot_four_reminder_send, DROP section_one_dot_two_and_one_dot_four_reminder_at');
}
}