(db: SqliteDatabase)
| 210 | * Get list of pending migrations |
| 211 | */ |
| 212 | export function getPendingMigrations(db: SqliteDatabase): Migration[] { |
| 213 | const current = getCurrentVersion(db); |
| 214 | return migrations |
| 215 | .filter((m) => m.version > current) |
| 216 | .sort((a, b) => a.version - b.version); |
| 217 | } |
| 218 | |
| 219 | /** |
| 220 | * Get migration history from database |
nothing calls this directly
no test coverage detected