migrations/Version20240624095532.php line 1

Open in your IDE?
  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 Version20240624095532 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 t_revision (id INT AUTO_INCREMENT NOT NULL, translatable_id INT DEFAULT NULL, locale VARCHAR(8) NOT NULL, description LONGTEXT DEFAULT NULL, INDEX IDX_B98209962C2AC5D3 (translatable_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE t_revision ADD CONSTRAINT FK_B98209962C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES revision (id)');
  20.         // For every revision entity where main = 1 and description is not null or empty, create a translation with locale = 'fr' and description = description
  21.         $this->addSql('INSERT INTO t_revision (translatable_id, locale, description) SELECT id, \'fr\', description FROM revision WHERE main = 1 AND description IS NOT NULL AND description != \'\'');
  22.         $this->addSql('ALTER TABLE revision DROP description');
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         // this down() migration is auto-generated, please modify it to your needs
  27.         $this->addSql('ALTER TABLE t_revision DROP FOREIGN KEY FK_B98209962C2AC5D3');
  28.         $this->addSql('DROP TABLE t_revision');
  29.         $this->addSql('ALTER TABLE revision ADD description LONGTEXT DEFAULT NULL');
  30.     }
  31. }