vendor/bluue/projects-bundle/migrations/Version20230929091812.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace ProjectsBundleMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20230929091812 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('ALTER TABLE projects_bundle__task ADD is_active TINYINT(1) DEFAULT 1 NOT NULL');
  11.         $this->addSql('CREATE INDEX is_active ON projects_bundle__task (is_active)');
  12.     }
  13.     public function down(Schema $schema): void
  14.     {
  15.         $this->addSql('DROP INDEX is_active ON projects_bundle__task');
  16.         $this->addSql('ALTER TABLE projects_bundle__task DROP is_active');
  17.     }
  18. }