(db: Database.Database)
| 106 | } |
| 107 | |
| 108 | export function needsMigration(db: Database.Database): boolean { |
| 109 | const adapter = new BetterSqliteAdapter(db) |
| 110 | return coreNeedsMigration(adapter, CURRENT_SCHEMA_VERSION) |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Get pending migration info for UI display (with i18n). |
no outgoing calls
no test coverage detected