<?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 Version20220919123950 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('DROP TABLE legal_entity_category_questionnaire_reminder');
$this->addSql('ALTER TABLE uses_questionnaire 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 uses_questionnaire DROP reminder_at, CHANGE last_confirmed last_confirmed DATE DEFAULT NULL COMMENT \'(DC2Type:carbondate)\', CHANGE uploaded_at uploaded_at DATE DEFAULT NULL COMMENT \'(DC2Type:carbondate)\'');
}
}