addSql('CREATE INDEX idx_forum_parent_position ON forum (parent_id, position)'); $this->addSql('CREATE INDEX idx_forum_type ON forum (type)'); } public function down(Schema $schema): void { $this->addSql('DROP INDEX idx_forum_parent_position ON forum'); $this->addSql('DROP INDEX idx_forum_type ON forum'); } }