<?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 Version20240109124446 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE `podcast` CHANGE `seo_title` `seo_title` VARCHAR(255) DEFAULT NULL;');
$this->addSql('ALTER TABLE `podcast` CHANGE `seo_meta_keyword` `seo_meta_keyword` VARCHAR(255) DEFAULT NULL, CHANGE `seo_description` `seo_description` VARCHAR(255) DEFAULT NULL;');
}
public function down(Schema $schema): void
{
}
}