<?php
declare(strict_types=1);
namespace ShipmentsBundleMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20240618091354 extends AbstractMigration
{
public function up(Schema $schema): void
{
$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');
$this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location ADD CONSTRAINT FK_B49AC13F45F80CD FOREIGN KEY (shopping_cart_id) REFERENCES shipments_bundle__shopping_cart (id)');
$this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location ADD CONSTRAINT FK_B49AC13FB03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location ADD CONSTRAINT FK_B49AC13F896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location ADD CONSTRAINT FK_B49AC13FC76F1F52 FOREIGN KEY (deleted_by_id) REFERENCES user (id)');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location DROP FOREIGN KEY FK_B49AC13F45F80CD');
$this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location DROP FOREIGN KEY FK_B49AC13FB03A8386');
$this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location DROP FOREIGN KEY FK_B49AC13F896DBBDE');
$this->addSql('ALTER TABLE shipments_bundle__shopping_cart_location DROP FOREIGN KEY FK_B49AC13FC76F1F52');
$this->addSql('DROP TABLE shipments_bundle__shopping_cart_location');
}
}