migrations/Version20240805071824.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace CoreMigrations;
  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 Version20240805071824 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('CREATE FULLTEXT INDEX render ON notification (render)');
  19.         $this->addSql('CREATE INDEX viewed ON notification (viewed)');
  20.         $this->addSql('CREATE INDEX readed ON notification (readed)');
  21.         $this->addSql('CREATE INDEX deleted ON notification (deleted)');
  22.         $this->addSql('CREATE INDEX created_at ON notification (created_at)');
  23.         $this->addSql('CREATE INDEX updated_at ON notification (updated_at)');
  24.         $this->addSql('ALTER TABLE tickets_bundle__ticket_state ADD task_state_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  25.         $this->addSql('ALTER TABLE tickets_bundle__ticket_state ADD CONSTRAINT FK_D5EB48964518D68D FOREIGN KEY (task_state_id) REFERENCES projects_bundle__task_state (id)');
  26.         $this->addSql('CREATE INDEX IDX_D5EB48964518D68D ON tickets_bundle__ticket_state (task_state_id)');
  27.     }
  28.     public function down(Schema $schema): void
  29.     {
  30.         // this down() migration is auto-generated, please modify it to your needs
  31.         $this->addSql('ALTER TABLE tickets_bundle__ticket_state DROP FOREIGN KEY FK_D5EB48964518D68D');
  32.         $this->addSql('DROP INDEX IDX_D5EB48964518D68D ON tickets_bundle__ticket_state');
  33.         $this->addSql('ALTER TABLE tickets_bundle__ticket_state DROP task_state_id');
  34.         $this->addSql('DROP INDEX render ON notification');
  35.         $this->addSql('DROP INDEX viewed ON notification');
  36.         $this->addSql('DROP INDEX readed ON notification');
  37.         $this->addSql('DROP INDEX deleted ON notification');
  38.         $this->addSql('DROP INDEX created_at ON notification');
  39.         $this->addSql('DROP INDEX updated_at ON notification');
  40.     }
  41. }