Feat: Fügt die Spalte "checked" für Transactions hinzu

This commit is contained in:
2026-01-02 00:32:42 +01:00
parent 58cbd2a462
commit 7324cd94f3
2 changed files with 81 additions and 4 deletions

View File

@@ -28,6 +28,9 @@ class Transactions extends Table {
/// Betrag der Transaktion
RealColumn get amount => real().withDefault(const Constant(0))();
/// Ob diese Transaktion bereits geprüft wurde
BoolColumn get checked => boolean().withDefault(const Constant(true))();
/// Fremdschlüssel zum zugehörigen Konto
IntColumn get accountId => integer().references(Accounts, #id)();