<?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 Version20240122121558 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add gallery to page';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE page ADD gallery_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE page ADD CONSTRAINT FK_140AB6204E7AF8F FOREIGN KEY (gallery_id) REFERENCES media__gallery (id)');
$this->addSql('CREATE UNIQUE INDEX UNIQ_140AB6204E7AF8F ON page (gallery_id)');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE page DROP FOREIGN KEY FK_140AB6204E7AF8F');
$this->addSql('DROP INDEX UNIQ_140AB6204E7AF8F ON page');
$this->addSql('ALTER TABLE page DROP gallery_id');
}
}