<?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 Version20220826100844 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 company ADD website VARCHAR(255) DEFAULT NULL');
$this->addSql('ALTER TABLE notification_system ADD near_deadline TINYINT(1) DEFAULT NULL, ADD at_deadline TINYINT(1) DEFAULT NULL, ADD delay_of_deadline TINYINT(1) DEFAULT NULL, ADD significant_delay TINYINT(1) DEFAULT NULL, CHANGE is_active ahead_of_deadline TINYINT(1) DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE company DROP website');
$this->addSql('ALTER TABLE notification_system ADD is_active TINYINT(1) DEFAULT NULL, DROP ahead_of_deadline, DROP near_deadline, DROP at_deadline, DROP delay_of_deadline, DROP significant_delay');
}
}