Temporarily cast migration AsyncCollection to Collection pending #17

This commit is contained in:
2022-04-28 20:16:19 -05:00
parent de13030815
commit 30a23b1659
2 changed files with 3 additions and 2 deletions

View File

@@ -140,12 +140,13 @@ export class DatabaseMigrator extends Migrator {
* @protected
*/
protected async filterAppliedMigrations(identifiers: string[]): Promise<string[]> {
const existing = await this.builder()
const existing = (await this.builder()
.connection('default')
.select('identifier')
.from('migrations')
.whereIn('identifier', identifiers)
.get()
.collect())
.pluck<string>('identifier')
return identifiers.filter(id => !existing.includes(id))