<?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 Version20240117153920 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add seo fields to route';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE route ADD gallery_id INT DEFAULT NULL, ADD head_title VARCHAR(255) DEFAULT NULL, ADD slug VARCHAR(255) DEFAULT NULL, ADD seo_description VARCHAR(255) DEFAULT NULL, ADD seo_body LONGTEXT DEFAULT NULL, 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, ADD created_at DATETIME DEFAULT NULL, ADD updated_at DATETIME DEFAULT NULL');
$this->addSql('ALTER TABLE route ADD CONSTRAINT FK_2C420794E7AF8F FOREIGN KEY (gallery_id) REFERENCES media__gallery (id)');
$this->addSql('CREATE UNIQUE INDEX UNIQ_2C42079989D9B62 ON route (slug)');
$this->addSql('CREATE UNIQUE INDEX UNIQ_2C420794E7AF8F ON route (gallery_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE route DROP FOREIGN KEY FK_2C420794E7AF8F');
$this->addSql('DROP INDEX UNIQ_2C42079989D9B62 ON route');
$this->addSql('DROP INDEX UNIQ_2C420794E7AF8F ON route');
$this->addSql('ALTER TABLE route DROP gallery_id, DROP head_title, DROP slug, DROP seo_description, DROP seo_body, 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, DROP created_at, DROP updated_at');
}
}