Temporarily cast migration AsyncCollection to Collection pending #17

master
Garrett Mills 2 years ago
parent de13030815
commit 30a23b1659

@ -1,6 +1,6 @@
{
"name": "@extollo/lib",
"version": "0.9.41",
"version": "0.9.42",
"description": "The framework library that lifts up your code.",
"main": "lib/index.js",
"types": "lib/index.d.ts",

@ -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))

Loading…
Cancel
Save