<?php
declare(strict_types=1);
namespace SitesBundleMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20231122131940 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('CREATE TABLE sites_bundle__platform (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)\', name VARCHAR(255) NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, deleted_at DATETIME DEFAULT NULL, is_active TINYINT(1) DEFAULT 1 NOT NULL, INDEX IDX_6F4DC524B03A8386 (created_by_id), INDEX IDX_6F4DC524896DBBDE (updated_by_id), INDEX IDX_6F4DC524C76F1F52 (deleted_by_id), INDEX name (name), INDEX is_active (is_active), 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 sites_bundle__platform ADD CONSTRAINT FK_6F4DC524B03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE sites_bundle__platform ADD CONSTRAINT FK_6F4DC524896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE sites_bundle__platform ADD CONSTRAINT FK_6F4DC524C76F1F52 FOREIGN KEY (deleted_by_id) REFERENCES user (id)');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE sites_bundle__platform DROP FOREIGN KEY FK_6F4DC524B03A8386');
$this->addSql('ALTER TABLE sites_bundle__platform DROP FOREIGN KEY FK_6F4DC524896DBBDE');
$this->addSql('ALTER TABLE sites_bundle__platform DROP FOREIGN KEY FK_6F4DC524C76F1F52');
$this->addSql('DROP TABLE sites_bundle__platform');
}
}