fix: minor

This commit is contained in:
Mohamed Marrouchi 2025-01-05 22:26:45 +01:00
parent ef788591bf
commit 51d7650d08

View File

@ -358,7 +358,7 @@ module.exports = {
exist = Boolean(migrationDocument.status === action); exist = Boolean(migrationDocument.status === action);
if (exist) { if (exist) {
this.logger.warn( this.logger.warn(
`Cannot proceed migration "${name}" is already in "${action}" state`, `Cannot proceed migration "${version}" is already in "${action}" state`,
); );
} }
} }
@ -407,7 +407,8 @@ module.exports = {
.map((name) => { .map((name) => {
const [, ...migrationVersion] = name.split('-'); const [, ...migrationVersion] = name.split('-');
return `v${migrationVersion.join('.')}` as MigrationVersion; return `v${migrationVersion.join('.')}` as MigrationVersion;
}); })
.filter((value, index, self) => self.indexOf(value) === index);
} }
/** /**