<?php
declare(strict_types=1);
namespace Application\Migrations;
use App\Doctrine\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20230523142621 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_staff_request ADD reminder_at DATE DEFAULT NULL COMMENT \'(DC2Type:carbondate)\'');
$this->addSql('ALTER TABLE legal_entity_transfer ADD 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_staff_request DROP reminder_at');
$this->addSql('ALTER TABLE legal_entity_transfer DROP reminder_at');
}
}