<?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 Version20210928084008 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_project ADD max_scenario_duration NUMERIC(10, 2) DEFAULT \'0\' NOT NULL, DROP soft_limit, DROP max_scenario_number');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE scenario_project ADD soft_limit TINYINT(1) NOT NULL, ADD max_scenario_number INT DEFAULT 0 NOT NULL, DROP max_scenario_duration');
}
}