vendor/bluue/sales-bundle/migrations/Version20240808094047.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace SalesBundleMigrations;
  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 Version20240808094047 extends AbstractMigration
  10. {
  11.     public function up(Schema $schema): void
  12.     {
  13.         // this up() migration is auto-generated, please modify it to your needs
  14.         $this->addSql('ALTER TABLE sales_bundle__credit_note ADD edit_prices_with_tax TINYINT(1) DEFAULT 0 NOT NULL');
  15.         $this->addSql('ALTER TABLE sales_bundle__credit_note_line ADD unit_price_with_tax NUMERIC(20, 6) DEFAULT NULL');
  16.         $this->addSql('ALTER TABLE sales_bundle__delivery_note ADD total_discount NUMERIC(20, 6) DEFAULT NULL, ADD total_amount_no_discount NUMERIC(20, 6) DEFAULT NULL, ADD edit_prices_with_tax TINYINT(1) DEFAULT 0 NOT NULL');
  17.         $this->addSql('ALTER TABLE sales_bundle__delivery_note_line ADD unit_price_with_tax NUMERIC(20, 6) DEFAULT NULL, ADD total_discount NUMERIC(20, 6) DEFAULT NULL, ADD total_amount_no_discount NUMERIC(20, 6) DEFAULT NULL');
  18.         $this->addSql('ALTER TABLE sales_bundle__invoice ADD total_discount NUMERIC(20, 6) DEFAULT NULL, ADD total_amount_no_discount NUMERIC(20, 6) DEFAULT NULL, ADD edit_prices_with_tax TINYINT(1) DEFAULT 0 NOT NULL');
  19.         $this->addSql('ALTER TABLE sales_bundle__invoice_line ADD unit_price_with_tax NUMERIC(20, 6) DEFAULT NULL, ADD total_discount NUMERIC(20, 6) DEFAULT NULL, ADD total_amount_no_discount NUMERIC(20, 6) DEFAULT NULL');
  20.         $this->addSql('ALTER TABLE sales_bundle__order ADD total_discount NUMERIC(20, 6) DEFAULT NULL, ADD total_amount_no_discount NUMERIC(20, 6) DEFAULT NULL, ADD edit_prices_with_tax TINYINT(1) DEFAULT 0 NOT NULL');
  21.         $this->addSql('ALTER TABLE sales_bundle__order_line ADD unit_price_with_tax NUMERIC(20, 6) DEFAULT NULL, ADD total_discount NUMERIC(20, 6) DEFAULT NULL, ADD total_amount_no_discount NUMERIC(20, 6) DEFAULT NULL');
  22.         $this->addSql('ALTER TABLE sales_bundle__quotation ADD total_discount NUMERIC(20, 6) DEFAULT NULL, ADD total_amount_no_discount NUMERIC(20, 6) DEFAULT NULL, ADD edit_prices_with_tax TINYINT(1) DEFAULT 0 NOT NULL');
  23.         $this->addSql('ALTER TABLE sales_bundle__quotation_line ADD unit_price_with_tax NUMERIC(20, 6) DEFAULT NULL, ADD total_discount NUMERIC(20, 6) DEFAULT NULL, ADD total_amount_no_discount NUMERIC(20, 6) DEFAULT NULL');
  24.     }
  25.     public function down(Schema $schema): void
  26.     {
  27.         // this down() migration is auto-generated, please modify it to your needs
  28.         $this->addSql('ALTER TABLE sales_bundle__credit_note DROP edit_prices_with_tax');
  29.         $this->addSql('ALTER TABLE sales_bundle__credit_note_line DROP unit_price_with_tax');
  30.         $this->addSql('ALTER TABLE sales_bundle__delivery_note DROP total_discount, DROP total_amount_no_discount, DROP edit_prices_with_tax');
  31.         $this->addSql('ALTER TABLE sales_bundle__delivery_note_line DROP unit_price_with_tax, DROP total_discount, DROP total_amount_no_discount');
  32.         $this->addSql('ALTER TABLE sales_bundle__invoice DROP total_discount, DROP total_amount_no_discount, DROP edit_prices_with_tax');
  33.         $this->addSql('ALTER TABLE sales_bundle__invoice_line DROP unit_price_with_tax, DROP total_discount, DROP total_amount_no_discount');
  34.         $this->addSql('ALTER TABLE sales_bundle__order DROP total_discount, DROP total_amount_no_discount, DROP edit_prices_with_tax');
  35.         $this->addSql('ALTER TABLE sales_bundle__order_line DROP unit_price_with_tax, DROP total_discount, DROP total_amount_no_discount');
  36.         $this->addSql('ALTER TABLE sales_bundle__quotation DROP total_discount, DROP total_amount_no_discount, DROP edit_prices_with_tax');
  37.         $this->addSql('ALTER TABLE sales_bundle__quotation_line DROP unit_price_with_tax, DROP total_discount, DROP total_amount_no_discount');
  38.     }
  39. }