Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Important changes to data models, configuration, and migrations between each
AppEngine version, listed here to ease deployment and troubleshooting.

## Next Release (replace with git tag when deployed)
* Note: started to unroll task versions and aborted tokens into SQL tables.

## `20260714t095300-all`
* Bump runtimeVersion to `2026.07.10`.
Expand Down
4 changes: 4 additions & 0 deletions app/lib/database/schema.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,8 @@ abstract final class PrimarySchema extends Schema {
Table<Task> get tasks;

Table<TaskDependency> get taskDependencies;

Table<TaskVersion> get taskVersions;

Table<TaskAbortedToken> get taskAbortedTokens;
}
Loading
Loading