<?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 Version20230418123119 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('CREATE TABLE page_accoradion (id INT AUTO_INCREMENT NOT NULL, domain_id INT DEFAULT NULL, domain_lang_id INT DEFAULT NULL, page_id INT DEFAULT NULL, title VARCHAR(255) DEFAULT NULL, description VARCHAR(255) DEFAULT NULL, position INT DEFAULT NULL, created_at DATETIME DEFAULT NULL, updated_at DATETIME DEFAULT NULL, deleted_at DATETIME DEFAULT NULL, INDEX IDX_C9AE4968115F0EE5 (domain_id), INDEX IDX_C9AE4968E9F626BC (domain_lang_id), INDEX IDX_C9AE4968C4663E4 (page_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE page_accoradion ADD CONSTRAINT FK_C9AE4968115F0EE5 FOREIGN KEY (domain_id) REFERENCES domain (id)');
$this->addSql('ALTER TABLE page_accoradion ADD CONSTRAINT FK_C9AE4968E9F626BC FOREIGN KEY (domain_lang_id) REFERENCES domain_lang (id)');
$this->addSql('ALTER TABLE page_accoradion ADD CONSTRAINT FK_C9AE4968C4663E4 FOREIGN KEY (page_id) REFERENCES page (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE page_accoradion DROP FOREIGN KEY FK_C9AE4968115F0EE5');
$this->addSql('ALTER TABLE page_accoradion DROP FOREIGN KEY FK_C9AE4968E9F626BC');
$this->addSql('ALTER TABLE page_accoradion DROP FOREIGN KEY FK_C9AE4968C4663E4');
$this->addSql('DROP TABLE page_accoradion');
}
}