<?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 Version20220109195549 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 deal CHANGE sticky_from_at sticky_from_at DATETIME DEFAULT NULL, CHANGE sticky_to_at sticky_to_at DATETIME DEFAULT NULL');
$this->addSql('ALTER TABLE site ADD show_deals INT DEFAULT NULL, ADD sticky_spots VARCHAR(300) DEFAULT NULL, ADD report_emails VARCHAR(500) DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE deal CHANGE sticky_from_at sticky_from_at DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\', CHANGE sticky_to_at sticky_to_at DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\'');
$this->addSql('ALTER TABLE site DROP show_deals, DROP sticky_spots, DROP report_emails');
}
}