We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ca1d27 commit 72c284dCopy full SHA for 72c284d
test/regression/test_002_database_migration_test.dart
@@ -94,4 +94,12 @@ void main() {
94
await verifier.migrateAndValidate(db, 10);
95
await db.close();
96
});
97
+
98
+ test('upgrade from 10 to 11', () async {
99
+ final verifier = SchemaVerifier(GeneratedHelper());
100
+ final connection = await verifier.startAt(10);
101
+ final db = AppDatabase(connection);
102
+ await verifier.migrateAndValidate(db, 11);
103
+ await db.close();
104
+ });
105
}
0 commit comments