migrate method
Update SQLite structure with only new migrations.
Implementation
@override
@mustCallSuper
Future<void> migrate() async {
await super.migrate();
// Migrate cached jobs schema
await offlineRequestQueue.client.requestManager.migrate();
}