migrations/Version20251007090223.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20251007090223 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('ALTER TABLE channel_certificates_cursus_start DROP FOREIGN KEY FK_3F945E7832C8A3DE');
  19.         $this->addSql('DROP INDEX uniq_3f945e7832c8a3de ON channel_certificates_cursus_start');
  20.         $this->addSql('CREATE UNIQUE INDEX unique_organization_cursust_start_certificate ON channel_certificates_cursus_start (organization_id)');
  21.         $this->addSql('ALTER TABLE channel_certificates_cursus_start ADD CONSTRAINT FK_3F945E7832C8A3DE FOREIGN KEY (organization_id) REFERENCES channel_organizations (id) ON DELETE CASCADE');
  22.         $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');
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         // this down() migration is auto-generated, please modify it to your needs
  27.         $this->addSql('ALTER TABLE channel_certificates_cursus_start DROP FOREIGN KEY FK_3F945E7832C8A3DE');
  28.         $this->addSql('DROP INDEX unique_organization_cursust_start_certificate ON channel_certificates_cursus_start');
  29.         $this->addSql('CREATE UNIQUE INDEX UNIQ_3F945E7832C8A3DE ON channel_certificates_cursus_start (organization_id)');
  30.         $this->addSql('ALTER TABLE channel_certificates_cursus_start ADD CONSTRAINT FK_3F945E7832C8A3DE FOREIGN KEY (organization_id) REFERENCES channel_organizations (id) ON DELETE CASCADE');
  31.         $this->addSql('ALTER TABLE channel_channels DROP enabled_indexing, DROP enabled_chat_bot');
  32.     }
  33. }