migrations/Version20240719094622.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 Version20240719094622 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_team_member (id INT AUTO_INCREMENT NOT NULL, translatable_id INT DEFAULT NULL, locale VARCHAR(8) NOT NULL, description LONGTEXT DEFAULT NULL, job_title VARCHAR(255) NOT NULL, INDEX IDX_56AE99A02C2AC5D3 (translatable_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE t_team_member ADD CONSTRAINT FK_56AE99A02C2AC5D3 FOREIGN KEY (translatable_id) REFERENCES team_member (id)');
  20.         // For every team_member entity, create a translation with locale = 'fr', description = description and job_title = job_title
  21.         $this->addSql('INSERT INTO t_team_member (translatable_id, locale, description, job_title) SELECT id, \'fr\', description, job_title FROM team_member');
  22.         $this->addSql('ALTER TABLE team_member DROP description, DROP job_title');
  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_team_member DROP FOREIGN KEY FK_56AE99A02C2AC5D3');
  28.         $this->addSql('DROP TABLE t_team_member');
  29.         $this->addSql('ALTER TABLE team_member ADD description LONGTEXT DEFAULT NULL, ADD job_title VARCHAR(255) NOT NULL');
  30.     }
  31. }