<?php
declare(strict_types=1);
namespace ShipmentsBundleMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20230331091542 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE shipments_bundle__carrier_context ADD created_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD updated_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD deleted_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, ADD updated_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, ADD deleted_at DATETIME DEFAULT NULL');
$this->addSql('ALTER TABLE shipments_bundle__carrier_context ADD CONSTRAINT FK_BC80A029B03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE shipments_bundle__carrier_context ADD CONSTRAINT FK_BC80A029896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE shipments_bundle__carrier_context ADD CONSTRAINT FK_BC80A029C76F1F52 FOREIGN KEY (deleted_by_id) REFERENCES user (id)');
$this->addSql('CREATE INDEX IDX_BC80A029B03A8386 ON shipments_bundle__carrier_context (created_by_id)');
$this->addSql('CREATE INDEX IDX_BC80A029896DBBDE ON shipments_bundle__carrier_context (updated_by_id)');
$this->addSql('CREATE INDEX IDX_BC80A029C76F1F52 ON shipments_bundle__carrier_context (deleted_by_id)');
$this->addSql('CREATE INDEX deleted_at ON shipments_bundle__carrier_context (deleted_at)');
$this->addSql('CREATE INDEX created_at ON shipments_bundle__carrier_context (created_at)');
$this->addSql('CREATE INDEX updated_at ON shipments_bundle__carrier_context (updated_at)');
$this->addSql('ALTER TABLE shipments_bundle__carrier_context MODIFY created_at DATETIME NOT NULL, MODIFY updated_at DATETIME NOT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE shipments_bundle__carrier_context DROP FOREIGN KEY FK_BC80A029B03A8386');
$this->addSql('ALTER TABLE shipments_bundle__carrier_context DROP FOREIGN KEY FK_BC80A029896DBBDE');
$this->addSql('ALTER TABLE shipments_bundle__carrier_context DROP FOREIGN KEY FK_BC80A029C76F1F52');
$this->addSql('DROP INDEX IDX_BC80A029B03A8386 ON shipments_bundle__carrier_context');
$this->addSql('DROP INDEX IDX_BC80A029896DBBDE ON shipments_bundle__carrier_context');
$this->addSql('DROP INDEX IDX_BC80A029C76F1F52 ON shipments_bundle__carrier_context');
$this->addSql('DROP INDEX deleted_at ON shipments_bundle__carrier_context');
$this->addSql('DROP INDEX created_at ON shipments_bundle__carrier_context');
$this->addSql('DROP INDEX updated_at ON shipments_bundle__carrier_context');
$this->addSql('ALTER TABLE shipments_bundle__carrier_context DROP created_by_id, DROP updated_by_id, DROP deleted_by_id, DROP created_at, DROP updated_at, DROP deleted_at');
}
}