vendor/bluue/shipments-bundle/migrations/Version20240618091354.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace ShipmentsBundleMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20240618091354 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('CREATE TABLE shipments_bundle__shopping_cart_location (id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', shopping_cart_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', created_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', updated_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', deleted_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', reference VARCHAR(128) NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, deleted_at DATETIME DEFAULT NULL, INDEX IDX_B49AC13F45F80CD (shopping_cart_id), INDEX IDX_B49AC13FB03A8386 (created_by_id), INDEX IDX_B49AC13F896DBBDE (updated_by_id), INDEX IDX_B49AC13FC76F1F52 (deleted_by_id), INDEX reference (reference), INDEX deleted_at (deleted_at), INDEX created_at (created_at), INDEX updated_at (updated_at), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  11.         $this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location ADD CONSTRAINT FK_B49AC13F45F80CD FOREIGN KEY (shopping_cart_id) REFERENCES shipments_bundle__shopping_cart (id)');
  12.         $this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location ADD CONSTRAINT FK_B49AC13FB03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
  13.         $this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location ADD CONSTRAINT FK_B49AC13F896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
  14.         $this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location ADD CONSTRAINT FK_B49AC13FC76F1F52 FOREIGN KEY (deleted_by_id) REFERENCES user (id)');
  15.     }
  16.     public function down(Schema $schema): void
  17.     {
  18.         $this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location DROP FOREIGN KEY FK_B49AC13F45F80CD');
  19.         $this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location DROP FOREIGN KEY FK_B49AC13FB03A8386');
  20.         $this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location DROP FOREIGN KEY FK_B49AC13F896DBBDE');
  21.         $this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location DROP FOREIGN KEY FK_B49AC13FC76F1F52');
  22.         $this->addSql('DROP TABLE shipments_bundle__shopping_cart_location');
  23.     }
  24. }