<?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 Version20211119091423 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 intro_area (id INT AUTO_INCREMENT NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB'); 
        $this->addSql('CREATE TABLE intro_area_image (id INT AUTO_INCREMENT NOT NULL, intro_area_id INT NOT NULL, image VARCHAR(255) NOT NULL, updated_at DATETIME DEFAULT NULL, INDEX IDX_945A9E63D4896D0B (intro_area_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB'); 
        $this->addSql('CREATE TABLE intro_area_image_translation (id INT AUTO_INCREMENT NOT NULL, translatable_id INT DEFAULT NULL, caption VARCHAR(255) NOT NULL, locale VARCHAR(5) NOT NULL, INDEX IDX_73696882C2AC5D3 (translatable_id), UNIQUE INDEX intro_area_image_translation_unique_translation (translatable_id, locale), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB'); 
        $this->addSql('CREATE TABLE intro_area_translation (id INT AUTO_INCREMENT NOT NULL, translatable_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, introduction LONGTEXT NOT NULL, locale VARCHAR(5) NOT NULL, INDEX IDX_97E836352C2AC5D3 (translatable_id), UNIQUE INDEX intro_area_translation_unique_translation (translatable_id, locale), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB'); 
        $this->addSql('CREATE TABLE video (id INT AUTO_INCREMENT NOT NULL, url VARCHAR(255) NOT NULL, poster VARCHAR(255) NOT NULL, updated_at DATETIME DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB'); 
        $this->addSql('CREATE TABLE video_translation (id INT AUTO_INCREMENT NOT NULL, translatable_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, introduction LONGTEXT NOT NULL, call_to_action VARCHAR(255) NOT NULL, locale VARCHAR(5) NOT NULL, INDEX IDX_96EBF4CE2C2AC5D3 (translatable_id), UNIQUE INDEX video_translation_unique_translation (translatable_id, locale), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB'); 
        $this->addSql('ALTER TABLE intro_area_image ADD CONSTRAINT FK_945A9E63D4896D0B FOREIGN KEY (intro_area_id) REFERENCES intro_area (id)'); 
        $this->addSql('ALTER TABLE intro_area_image_translation ADD CONSTRAINT FK_73696882C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES intro_area_image (id) ON DELETE CASCADE'); 
        $this->addSql('ALTER TABLE intro_area_translation ADD CONSTRAINT FK_97E836352C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES intro_area (id) ON DELETE CASCADE'); 
        $this->addSql('ALTER TABLE video_translation ADD CONSTRAINT FK_96EBF4CE2C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES video (id) ON DELETE CASCADE'); 
    } 
 
    public function down(Schema $schema): void 
    { 
        // this down() migration is auto-generated, please modify it to your needs 
        $this->addSql('ALTER TABLE intro_area_image DROP FOREIGN KEY FK_945A9E63D4896D0B'); 
        $this->addSql('ALTER TABLE intro_area_translation DROP FOREIGN KEY FK_97E836352C2AC5D3'); 
        $this->addSql('ALTER TABLE intro_area_image_translation DROP FOREIGN KEY FK_73696882C2AC5D3'); 
        $this->addSql('ALTER TABLE video_translation DROP FOREIGN KEY FK_96EBF4CE2C2AC5D3'); 
        $this->addSql('DROP TABLE intro_area'); 
        $this->addSql('DROP TABLE intro_area_image'); 
        $this->addSql('DROP TABLE intro_area_image_translation'); 
        $this->addSql('DROP TABLE intro_area_translation'); 
        $this->addSql('DROP TABLE video'); 
        $this->addSql('DROP TABLE video_translation'); 
    } 
}