<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20210928144934 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 scenario_type ADD role_name_1 VARCHAR(255) NOT NULL, ADD brief_1 LONGTEXT NOT NULL, ADD role_name_2 VARCHAR(255) NOT NULL, ADD brief_2 LONGTEXT NOT NULL, DROP brief_client, DROP brief_agent');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE scenario_type ADD brief_client LONGTEXT CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, ADD brief_agent LONGTEXT CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, DROP role_name_1, DROP brief_1, DROP role_name_2, DROP brief_2');
}
}