<?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 Version20230529092943 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 inspiration ADD meta_title VARCHAR(255) DEFAULT NULL, ADD meta_description VARCHAR(1000) DEFAULT NULL, ADD meta_keywords VARCHAR(255) DEFAULT NULL, ADD information_no_follow TINYINT(1) DEFAULT NULL, ADD og_title VARCHAR(255) DEFAULT NULL, ADD og_description VARCHAR(1000) DEFAULT NULL, ADD og_image VARCHAR(255) DEFAULT NULL, ADD og_image_secure VARCHAR(255) DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE inspiration DROP meta_title, DROP meta_description, DROP meta_keywords, DROP information_no_follow, DROP og_title, DROP og_description, DROP og_image, DROP og_image_secure');
}
}