migrations/2024/09/Version20240919124021.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Application\Migrations;
  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 Version20240919124021 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this
  18.             ->correct('AFTONCHEMI'300)
  19.             ->correct('ASWATSON01'487)
  20.             ->correct('CHEMTURACO'114)
  21.             ->correct('ECQUALITYL'194)
  22.             ->correct('GULFOILSUP'1021)
  23.             ->correct('RAIZENTRAD'833)
  24.             ->correct('SANKYOYUKA'103)
  25.         ;
  26.     }
  27.     private function correct(string $codeint $correct): self
  28.     {
  29.         $this->addSql('
  30.             UPDATE legal_entity e
  31.             JOIN legal_entity_billing_company c ON e.billing_company_id = c.id AND c.alpha_code = ?
  32.             SET e.billing_company_id = ?
  33.         ', [$code$correct]);
  34.         $this->addSql('
  35.             UPDATE legal_entity_order_invoice i
  36.             JOIN legal_entity_billing_company c ON i.billing_company_id = c.id AND c.alpha_code = ?
  37.             SET i.billing_company_id = ?
  38.         ', [$code$correct]);
  39.         $this->addSql('DELETE FROM legal_entity_billing_company WHERE alpha_code = ? AND id != ?', [
  40.             $code,
  41.             $correct,
  42.         ]);
  43.         return $this;
  44.     }
  45.     public function down(Schema $schema): void
  46.     {
  47.         // this down() migration is auto-generated, please modify it to your needs
  48.     }
  49. }