migrations/Version20220804141403.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace CoreMigrations;
  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 Version20220804141403 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('DROP INDEX reference ON shipments_bundle__carrier');
  19.         $this->addSql('ALTER TABLE shipments_bundle__carrier DROP reference');
  20.         $this->addSql('ALTER TABLE stocks_bundle__stock_location ADD note LONGTEXT DEFAULT NULL');
  21.         $this->addSql('CREATE INDEX reference ON suppliers_bundle__product_supplier (reference)');
  22.         $this->addSql('CREATE INDEX wholesale_price ON suppliers_bundle__product_supplier (wholesale_price)');
  23.         $this->addSql('ALTER TABLE unit_measure ADD show_details_on_pdf TINYINT(1) DEFAULT 1 NOT NULL');
  24.         $this->addSql('CREATE INDEX show_details_on_pdf ON unit_measure (show_details_on_pdf)');
  25.     }
  26.     public function down(Schema $schema): void
  27.     {
  28.         // this down() migration is auto-generated, please modify it to your needs
  29.         $this->addSql('ALTER TABLE shipments_bundle__carrier ADD reference VARCHAR(128) DEFAULT NULL');
  30.         $this->addSql('CREATE INDEX reference ON shipments_bundle__carrier (reference)');
  31.         $this->addSql('ALTER TABLE stocks_bundle__stock_location DROP note');
  32.         $this->addSql('DROP INDEX reference ON suppliers_bundle__product_supplier');
  33.         $this->addSql('DROP INDEX wholesale_price ON suppliers_bundle__product_supplier');
  34.         $this->addSql('DROP INDEX show_details_on_pdf ON unit_measure');
  35.         $this->addSql('ALTER TABLE unit_measure DROP show_details_on_pdf');
  36.     }
  37. }