migrations/Version20240130162607.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. final class Version20240130162607 extends AbstractMigration
  7. {
  8.     public function getDescription(): string
  9.     {
  10.         return 'Change outdoor safety to domain lang';
  11.     }
  12.     public function up(Schema $schema): void
  13.     {
  14.         // this up() migration is auto-generated, please modify it to your needs
  15.         $this->addSql('ALTER TABLE outdoor_safety ADD domain_id INT DEFAULT NULL, ADD domain_lang_id INT DEFAULT NULL, DROP lang');
  16.         $this->addSql('ALTER TABLE outdoor_safety ADD CONSTRAINT FK_E8893969115F0EE5 FOREIGN KEY (domain_id) REFERENCES domain (id)');
  17.         $this->addSql('ALTER TABLE outdoor_safety ADD CONSTRAINT FK_E8893969E9F626BC FOREIGN KEY (domain_lang_id) REFERENCES domain_lang (id)');
  18.         $this->addSql('CREATE INDEX IDX_E8893969115F0EE5 ON outdoor_safety (domain_id)');
  19.         $this->addSql('CREATE INDEX IDX_E8893969E9F626BC ON outdoor_safety (domain_lang_id)');
  20.     }
  21.     public function down(Schema $schema): void
  22.     {
  23.         // this down() migration is auto-generated, please modify it to your needs
  24.         $this->addSql('ALTER TABLE outdoor_safety DROP FOREIGN KEY FK_E8893969115F0EE5');
  25.         $this->addSql('ALTER TABLE outdoor_safety DROP FOREIGN KEY FK_E8893969E9F626BC');
  26.         $this->addSql('DROP INDEX IDX_E8893969115F0EE5 ON outdoor_safety');
  27.         $this->addSql('DROP INDEX IDX_E8893969E9F626BC ON outdoor_safety');
  28.         $this->addSql('ALTER TABLE outdoor_safety ADD lang VARCHAR(2) DEFAULT \'en\' NOT NULL, DROP domain_id, DROP domain_lang_id');
  29.     }
  30. }