src/Migrations/Version20220423152423.php line 1

  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20220423152423 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('CREATE TABLE content_textblock_translation (id INT AUTO_INCREMENT NOT NULL, translatable_id INT DEFAULT NULL, caption VARCHAR(255) NOT NULL, content LONGTEXT DEFAULT NULL, locale VARCHAR(5) NOT NULL, INDEX IDX_8B8079832C2AC5D3 (translatable_id), UNIQUE INDEX content_textblock_translation_unique_translation (translatable_id, locale), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE gallery_album_translation (id INT AUTO_INCREMENT NOT NULL, translatable_id INT DEFAULT NULL, caption VARCHAR(255) NOT NULL, locale VARCHAR(5) NOT NULL, INDEX IDX_CC1AA3362C2AC5D3 (translatable_id), UNIQUE INDEX gallery_album_translation_unique_translation (translatable_id, locale), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE news_translation (id INT AUTO_INCREMENT NOT NULL, translatable_id INT DEFAULT NULL, caption VARCHAR(255) NOT NULL, subtitle VARCHAR(250) DEFAULT NULL, preview LONGTEXT DEFAULT NULL, text LONGTEXT DEFAULT NULL, locale VARCHAR(5) NOT NULL, INDEX IDX_9D5CF3202C2AC5D3 (translatable_id), UNIQUE INDEX news_translation_unique_translation (translatable_id, locale), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE content_textblock_translation ADD CONSTRAINT FK_8B8079832C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES content_textblock (id) ON DELETE CASCADE');
  22.         $this->addSql('ALTER TABLE gallery_album_translation ADD CONSTRAINT FK_CC1AA3362C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES gallery_album (id) ON DELETE CASCADE');
  23.         $this->addSql('ALTER TABLE news_translation ADD CONSTRAINT FK_9D5CF3202C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES news (id) ON DELETE CASCADE');
  24.         $this->addSql('INSERT IGNORE INTO content_textblock_translation  (translatable_id, locale, caption, content) (SELECT id AS translation_id, \'ru\' AS locale, caption, content FROM content_textblock)');
  25.         $this->addSql('INSERT IGNORE INTO gallery_album_translation  (translatable_id, locale, caption) (SELECT id AS translation_id, \'ru\' AS locale, caption FROM gallery_album)');
  26.         $this->addSql('INSERT IGNORE INTO news_translation  (translatable_id, locale, caption, subtitle, preview, text) (SELECT id AS translation_id, \'ru\' AS locale, caption, subtitle, preview, text FROM news)');
  27.     }
  28.     public function down(Schema $schema): void
  29.     {
  30.         // this down() migration is auto-generated, please modify it to your needs
  31.         $this->addSql('DROP TABLE content_textblock_translation');
  32.         $this->addSql('DROP TABLE gallery_album_translation');
  33.         $this->addSql('DROP TABLE news_translation');
  34.     }
  35. }