migrations/Version20240118103519.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 Version20240118103519 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return 'Update TaxProduct to OrderSlip and add fields OrderSlip';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql('ALTER TABLE order_slip ADD product_count INT NOT NULL AFTER total_tax_excl, ADD total_products_tax_excl DOUBLE PRECISION NOT NULL AFTER product_count, ADD total_products_tax_incl DOUBLE PRECISION NOT NULL AFTER total_products_tax_excl, ADD total_shipping_tax_excl DOUBLE PRECISION DEFAULT NULL AFTER total_products_tax_incl, ADD total_shipping_amount DOUBLE PRECISION DEFAULT NULL AFTER total_shipping_tax_excl, ADD shipping_rate VARCHAR(255) DEFAULT NULL AFTER total_shipping_amount, ADD total_ecotax_tax_excl DOUBLE PRECISION DEFAULT NULL AFTER shipping_rate, ADD total_ecotax_tax_incl DOUBLE PRECISION DEFAULT NULL AFTER total_ecotax_tax_excl, ADD ecotax_rate VARCHAR(255) DEFAULT NULL AFTER total_ecotax_tax_incl');
  18.         $this->addSql('UPDATE order_slip SET total_products_tax_excl = total_tax_excl');
  19.         $this->addSql('ALTER TABLE order_slip DROP total_tax_excl');
  20.         $this->addSql('ALTER TABLE tax_product ADD order_slip_id INT DEFAULT NULL');
  21.         $this->addSql('ALTER TABLE tax_product ADD CONSTRAINT FK_9202A4A7AFBDDA20 FOREIGN KEY (order_slip_id) REFERENCES order_slip (id)');
  22.         $this->addSql('CREATE INDEX IDX_9202A4A7AFBDDA20 ON tax_product (order_slip_id)');
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         $this->addSql('ALTER TABLE order_slip ADD total_tax_excl DOUBLE PRECISION NOT NULL AFTER number');
  27.         $this->addSql('UPDATE order_slip SET total_tax_excl = total_products_tax_excl');
  28.         $this->addSql('ALTER TABLE order_slip DROP product_count, DROP total_products_tax_excl, DROP total_products_tax_incl, DROP total_shipping_tax_excl, DROP total_shipping_amount, DROP shipping_rate, DROP total_ecotax_tax_excl, DROP total_ecotax_tax_incl, DROP ecotax_rate');
  29.         $this->addSql('ALTER TABLE tax_product DROP FOREIGN KEY FK_9202A4A7AFBDDA20');
  30.         $this->addSql('DROP INDEX IDX_9202A4A7AFBDDA20 ON tax_product');
  31.         $this->addSql('ALTER TABLE tax_product DROP order_slip_id');
  32.     }
  33. }