migrations/Version20231213150523.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 Version20231213150523 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return 'Add TaxDiscount, TaxProduct & update fields Order, OrderInvoice and OrderProduct';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql('CREATE TABLE tax_discount (id INT AUTO_INCREMENT NOT NULL, order_id INT DEFAULT NULL, rate VARCHAR(50) NOT NULL, amount DOUBLE PRECISION NOT NULL, INDEX IDX_17415B08D9F6D38 (order_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  18.         $this->addSql('CREATE TABLE tax_product (id INT AUTO_INCREMENT NOT NULL, order_invoice_id INT DEFAULT NULL, total_price_tax_excl DOUBLE PRECISION NOT NULL, total_amount DOUBLE PRECISION NOT NULL, rate VARCHAR(255) NOT NULL, INDEX IDX_9202A4A79A530CA8 (order_invoice_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE tax_discount ADD CONSTRAINT FK_17415B08D9F6D38 FOREIGN KEY (order_id) REFERENCES `order` (id)');
  20.         $this->addSql('ALTER TABLE tax_product ADD CONSTRAINT FK_9202A4A79A530CA8 FOREIGN KEY (order_invoice_id) REFERENCES order_invoice (id)');
  21.         $this->addSql('ALTER TABLE `order` ADD payment VARCHAR(255) NOT NULL, ADD total_discount_tax_incl DOUBLE PRECISION DEFAULT NULL, ADD total_discount_tax DOUBLE PRECISION DEFAULT NULL');
  22.         $this->addSql('ALTER TABLE order_invoice ADD total_shipping_tax_excl DOUBLE PRECISION DEFAULT NULL, ADD total_shipping_amount DOUBLE PRECISION DEFAULT NULL, ADD shipping_rate VARCHAR(255) DEFAULT NULL, ADD total_ecotax_tax_excl DOUBLE PRECISION DEFAULT NULL, ADD total_ecotax_tax_incl DOUBLE PRECISION DEFAULT NULL, ADD ecotax_rate VARCHAR(255) DEFAULT NULL, ADD total_wrapping_tax_excl DOUBLE PRECISION DEFAULT NULL, ADD total_wrapping_amount DOUBLE PRECISION DEFAULT NULL, ADD wrapping_rate VARCHAR(255) DEFAULT NULL');
  23.         $this->addSql('ALTER TABLE order_product ADD reduction_amount_tax_excl DOUBLE PRECISION DEFAULT NULL, ADD reduction_amount_tax_incl DOUBLE PRECISION DEFAULT NULL, ADD ecotax_tax_rate VARCHAR(255) DEFAULT NULL, ADD ecotax_name VARCHAR(255) DEFAULT NULL');
  24.     }
  25.     public function down(Schema $schema): void
  26.     {
  27.         $this->addSql('ALTER TABLE tax_discount DROP FOREIGN KEY FK_17415B08D9F6D38');
  28.         $this->addSql('ALTER TABLE tax_product DROP FOREIGN KEY FK_9202A4A79A530CA8');
  29.         $this->addSql('DROP TABLE tax_discount');
  30.         $this->addSql('DROP TABLE tax_product');
  31.         $this->addSql('ALTER TABLE `order` DROP payment, DROP total_discount_tax_incl, DROP total_discount_tax');
  32.         $this->addSql('ALTER TABLE order_invoice 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, DROP total_wrapping_tax_excl, DROP total_wrapping_amount, DROP wrapping_rate');
  33.         $this->addSql('ALTER TABLE order_product DROP reduction_amount_tax_excl, DROP reduction_amount_tax_incl, DROP ecotax_tax_rate, DROP ecotax_name');
  34.     }
  35. }