<?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 Version20240111113911 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 podcast ADD teaser_5 LONGTEXT DEFAULT NULL AFTER `teaser_4`, ADD teaser_6 LONGTEXT DEFAULT NULL AFTER `teaser_5`,ADD teaser_7 LONGTEXT DEFAULT NULL AFTER `teaser_6`, ADD sponsor_sub_title VARCHAR(255) NOT NULL AFTER `sponsor_title`');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE podcast DROP teaser_5, DROP teaser_6, DROP teaser_7, DROP sponsor_sub_title ');
}
}