<?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 Version20211213104922 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 checks ADD s2_screenshot_delta_red_percentage_http LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:json)\', ADD s2_screenshot_delta_red_percentage_https LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:json)\', ADD s3_screenshot_delta_red_percentage_http LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:json)\', ADD s3_screenshot_delta_red_percentage_https LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:json)\', ADD s4_screenshot_delta_red_percentage_http LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:json)\', ADD s4_screenshot_delta_red_percentage_https LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:json)\'');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE checks DROP s2_screenshot_delta_red_percentage_http, DROP s2_screenshot_delta_red_percentage_https, DROP s3_screenshot_delta_red_percentage_http, DROP s3_screenshot_delta_red_percentage_https, DROP s4_screenshot_delta_red_percentage_http, DROP s4_screenshot_delta_red_percentage_https');
}
}