fix: commit forgotten files

This commit is contained in:
Patryk Hegenberg 2026-02-18 08:45:58 +01:00
parent fe6a1c6ee0
commit e57da88272
4 changed files with 48 additions and 1 deletions

View file

@ -17,6 +17,8 @@ class Users extends Table {
TextColumn get inventorySettings =>
text().map(const MapConverter()).nullable()();
TextColumn get avatarConfig => text().map(const MapConverter()).nullable()();
TextColumn get trainingDays => text().map(const ListConverter()).nullable()();
TextColumn get notificationSettings => text().map(const MapConverter()).nullable()();
DateTimeColumn get lastSyncAt => dateTime().nullable()();
BoolColumn get isDirty => boolean().withDefault(const Constant(false))();