<?php
declare(strict_types=1);
namespace CategoriesBundleMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20231109090027 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE categories_bundle__category_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 categories_bundle__category_context ADD CONSTRAINT FK_7E2E3ED7B03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE categories_bundle__category_context ADD CONSTRAINT FK_7E2E3ED7896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE categories_bundle__category_context ADD CONSTRAINT FK_7E2E3ED7C76F1F52 FOREIGN KEY (deleted_by_id) REFERENCES user (id)');
$this->addSql('CREATE INDEX IDX_7E2E3ED7B03A8386 ON categories_bundle__category_context (created_by_id)');
$this->addSql('CREATE INDEX IDX_7E2E3ED7896DBBDE ON categories_bundle__category_context (updated_by_id)');
$this->addSql('CREATE INDEX IDX_7E2E3ED7C76F1F52 ON categories_bundle__category_context (deleted_by_id)');
$this->addSql('CREATE INDEX deleted_at ON categories_bundle__category_context (deleted_at)');
$this->addSql('CREATE INDEX created_at ON categories_bundle__category_context (created_at)');
$this->addSql('CREATE INDEX updated_at ON categories_bundle__category_context (updated_at)');
$this->addSql('ALTER TABLE categories_bundle__category_context MODIFY created_at DATETIME NOT NULL, MODIFY updated_at DATETIME NOT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE categories_bundle__category_context DROP FOREIGN KEY FK_7E2E3ED7B03A8386');
$this->addSql('ALTER TABLE categories_bundle__category_context DROP FOREIGN KEY FK_7E2E3ED7896DBBDE');
$this->addSql('ALTER TABLE categories_bundle__category_context DROP FOREIGN KEY FK_7E2E3ED7C76F1F52');
$this->addSql('DROP INDEX IDX_7E2E3ED7B03A8386 ON categories_bundle__category_context');
$this->addSql('DROP INDEX IDX_7E2E3ED7896DBBDE ON categories_bundle__category_context');
$this->addSql('DROP INDEX IDX_7E2E3ED7C76F1F52 ON categories_bundle__category_context');
$this->addSql('DROP INDEX deleted_at ON categories_bundle__category_context');
$this->addSql('DROP INDEX created_at ON categories_bundle__category_context');
$this->addSql('DROP INDEX updated_at ON categories_bundle__category_context');
$this->addSql('ALTER TABLE categories_bundle__category_context DROP created_by_id, DROP updated_by_id, DROP deleted_by_id, DROP created_at, DROP updated_at, DROP deleted_at');
}
}