<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20251007090223 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE channel_certificates_cursus_start DROP FOREIGN KEY FK_3F945E7832C8A3DE');
$this->addSql('DROP INDEX uniq_3f945e7832c8a3de ON channel_certificates_cursus_start');
$this->addSql('CREATE UNIQUE INDEX unique_organization_cursust_start_certificate ON channel_certificates_cursus_start (organization_id)');
$this->addSql('ALTER TABLE channel_certificates_cursus_start ADD CONSTRAINT FK_3F945E7832C8A3DE FOREIGN KEY (organization_id) REFERENCES channel_organizations (id) ON DELETE CASCADE');
$this->addSql('ALTER TABLE channel_channels ADD enabled_indexing TINYINT(1) DEFAULT 0 NOT NULL, ADD enabled_chat_bot TINYINT(1) DEFAULT 0 NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE channel_certificates_cursus_start DROP FOREIGN KEY FK_3F945E7832C8A3DE');
$this->addSql('DROP INDEX unique_organization_cursust_start_certificate ON channel_certificates_cursus_start');
$this->addSql('CREATE UNIQUE INDEX UNIQ_3F945E7832C8A3DE ON channel_certificates_cursus_start (organization_id)');
$this->addSql('ALTER TABLE channel_certificates_cursus_start ADD CONSTRAINT FK_3F945E7832C8A3DE FOREIGN KEY (organization_id) REFERENCES channel_organizations (id) ON DELETE CASCADE');
$this->addSql('ALTER TABLE channel_channels DROP enabled_indexing, DROP enabled_chat_bot');
}
}