add new db fields to action
This commit is contained in:
@ -23,6 +23,8 @@ import 'schema_v7.dart' as v7;
|
||||
import 'schema_v8.dart' as v8;
|
||||
import 'schema_v9.dart' as v9;
|
||||
import 'schema_v20.dart' as v20;
|
||||
import 'schema_v21.dart' as v21;
|
||||
import 'schema_v22.dart' as v22;
|
||||
|
||||
class GeneratedHelper implements SchemaInstantiationHelper {
|
||||
@override
|
||||
@ -68,6 +70,10 @@ class GeneratedHelper implements SchemaInstantiationHelper {
|
||||
return v9.DatabaseAtV9(db);
|
||||
case 20:
|
||||
return v20.DatabaseAtV20(db);
|
||||
case 21:
|
||||
return v21.DatabaseAtV21(db);
|
||||
case 22:
|
||||
return v22.DatabaseAtV22(db);
|
||||
default:
|
||||
throw MissingSchemaException(version, versions);
|
||||
}
|
||||
@ -93,6 +99,8 @@ class GeneratedHelper implements SchemaInstantiationHelper {
|
||||
17,
|
||||
18,
|
||||
19,
|
||||
20
|
||||
20,
|
||||
21,
|
||||
22
|
||||
];
|
||||
}
|
||||
|
2604
test/drift/sendtrain/generated/schema_v21.dart
Normal file
2604
test/drift/sendtrain/generated/schema_v21.dart
Normal file
File diff suppressed because it is too large
Load Diff
2639
test/drift/sendtrain/generated/schema_v22.dart
Normal file
2639
test/drift/sendtrain/generated/schema_v22.dart
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user