diff --git a/lib/Migration/Version020308Date20210805164128.php b/lib/Migration/Version020308Date20210805164128.php deleted file mode 100644 index a22aba30..00000000 --- a/lib/Migration/Version020308Date20210805164128.php +++ /dev/null @@ -1,52 +0,0 @@ -hasTable('passman_credentials')) { - $table = $schema->getTable('passman_credentials'); - if (!$table->hasIndex('passman_credential_label_index')) { - $table->addIndex(['label'], 'passman_credential_label_index'); - } - } - - return $schema; - } - - /** - * @param IOutput $output - * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` - * @param array $options - */ - public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void { - } -}