getTable('kimai2_tags'); if (!$table->hasIndex('IDX_27CAF54C7AB0E859')) { // used to count the tags for the dropdown (filter and timesheet edit) $table->addIndex(['visible'], 'IDX_27CAF54C7AB0E859'); } } public function down(Schema $schema): void { $table = $schema->getTable('kimai2_tags'); if ($table->hasIndex('IDX_27CAF54C7AB0E859')) { $table->dropIndex('IDX_27CAF54C7AB0E859'); } } public function isTransactional(): bool { return false; } }