|
|
@@ -31,7 +31,7 @@ export class DBMigration extends SQLiteController {
|
|
|
}
|
|
|
|
|
|
const id = Number(m[1]);
|
|
|
- if (id < lastID) continue;
|
|
|
+ if (id <= lastID) continue;
|
|
|
|
|
|
const migFilepath = path.join(migrationsDir, file);
|
|
|
const migration = await fsp.readFile(migFilepath, { encoding: 'utf-8' });
|