migrations/Version20220630091013.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 Version20220630091013 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('ALTER TABLE inventories_bundle__inventory ADD location_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD sub_location_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  19.         $this->addSql('ALTER TABLE inventories_bundle__inventory ADD CONSTRAINT FK_F5586DDC64D218E FOREIGN KEY (location_id) REFERENCES stocks_bundle__location (id)');
  20.         $this->addSql('ALTER TABLE inventories_bundle__inventory ADD CONSTRAINT FK_F5586DDCE3B45410 FOREIGN KEY (sub_location_id) REFERENCES stocks_bundle__sub_location (id)');
  21.         $this->addSql('CREATE INDEX IDX_F5586DDC64D218E ON inventories_bundle__inventory (location_id)');
  22.         $this->addSql('CREATE INDEX IDX_F5586DDCE3B45410 ON inventories_bundle__inventory (sub_location_id)');
  23.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement ADD delivery_note_line_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  24.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement ADD CONSTRAINT FK_11E6623A535E48DC FOREIGN KEY (delivery_note_line_id) REFERENCES sales_bundle__delivery_note_line (id)');
  25.         $this->addSql('CREATE INDEX IDX_11E6623A535E48DC ON stocks_bundle__stock_movement (delivery_note_line_id)');
  26.     }
  27.     public function down(Schema $schema): void
  28.     {
  29.         // this down() migration is auto-generated, please modify it to your needs
  30.         $this->addSql('ALTER TABLE inventories_bundle__inventory DROP FOREIGN KEY FK_F5586DDC64D218E');
  31.         $this->addSql('ALTER TABLE inventories_bundle__inventory DROP FOREIGN KEY FK_F5586DDCE3B45410');
  32.         $this->addSql('DROP INDEX IDX_F5586DDC64D218E ON inventories_bundle__inventory');
  33.         $this->addSql('DROP INDEX IDX_F5586DDCE3B45410 ON inventories_bundle__inventory');
  34.         $this->addSql('ALTER TABLE inventories_bundle__inventory DROP location_id, DROP sub_location_id');
  35.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement DROP FOREIGN KEY FK_11E6623A535E48DC');
  36.         $this->addSql('DROP INDEX IDX_11E6623A535E48DC ON stocks_bundle__stock_movement');
  37.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement DROP delivery_note_line_id');
  38.     }
  39. }