migrations/Version20231016135427.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 Version20231016135427 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return 'Add new fields Order (totalPaidReal, totalProductsTaxExcl, totalShippingTaxExcl, totalDiscountTaxExcl, totalTax, invoiceNumber, totalWrappingTaxExcl), create table OrderSlip and add new field OrderProduct (price, ecotax)';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql('CREATE TABLE order_slip (id INT AUTO_INCREMENT NOT NULL, order_id INT DEFAULT NULL, number VARCHAR(20) NOT NULL, total_tax_excl DOUBLE PRECISION NOT NULL, created_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', INDEX IDX_B0C879EFFCDAEAAA (order_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  18.         $this->addSql('ALTER TABLE order_slip ADD CONSTRAINT FK_B0C879EFFCDAEAAA FOREIGN KEY (order_id) REFERENCES `order` (id)');
  19.         $this->addSql('ALTER TABLE `order` ADD total_paid_real DOUBLE PRECISION DEFAULT NULL, ADD total_products_tax_excl DOUBLE PRECISION DEFAULT NULL, ADD total_shipping_tax_excl DOUBLE PRECISION DEFAULT NULL, ADD total_discount_tax_excl DOUBLE PRECISION DEFAULT NULL, ADD total_wrapping_tax_excl DOUBLE PRECISION DEFAULT NULL, ADD total_tax DOUBLE PRECISION DEFAULT NULL, ADD invoice_number VARCHAR(20) DEFAULT NULL');
  20.         $this->addSql('ALTER TABLE order_product ADD price DOUBLE PRECISION DEFAULT NULL, ADD ecotax DOUBLE PRECISION DEFAULT NULL');
  21.     }
  22.     public function down(Schema $schema): void
  23.     {
  24.         $this->addSql('DROP TABLE order_slip');
  25.         $this->addSql('ALTER TABLE `order` DROP total_paid_real, DROP total_products_tax_excl, DROP total_shipping_tax_excl, DROP total_discount_tax_excl, DROP total_wrapping_tax_excl, DROP total_tax, DROP invoice_number');
  26.         $this->addSql('ALTER TABLE order_product DROP price, DROP ecotax');
  27.     }
  28. }