We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23559d6 commit 60cbc0bCopy full SHA for 60cbc0b
test/model/database_test.dart
@@ -98,6 +98,13 @@ void main() {
98
verifier = SchemaVerifier(GeneratedHelper());
99
});
100
101
+ test('downgrading', () async {
102
+ final connection = await verifier.startAt(2);
103
+ final db = AppDatabase(connection);
104
+ await verifier.migrateAndValidate(db, 1);
105
+ await db.close();
106
+ }, skip: true); // TODO(#1172): unskip this
107
+
108
test('upgrade to v2, empty', () async {
109
final connection = await verifier.startAt(1);
110
final db = AppDatabase(connection);
0 commit comments