add new db fields to action

This commit is contained in:
Joshua Burman
2025-01-07 18:41:50 -05:00
parent 2288cba78e
commit 0cf62ec4b4
9 changed files with 6440 additions and 7 deletions

View File

@ -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
];
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff