Update settings.dart schema

This commit is contained in:
Brandon Presley 2023-11-10 16:16:45 +13:00
parent 305ecd20eb
commit e6ba3f1a1c
1 changed files with 13 additions and 13 deletions

View File

@ -21,18 +21,18 @@ Setting defaultSettings = Setting(
class Settings extends Table {
BoolColumn get alarm => boolean()();
BoolColumn get vibrate => boolean()();
TextColumn get sound => text().nullable()();
BoolColumn get notify => boolean()();
BoolColumn get images => boolean()();
BoolColumn get showUnit => boolean().nullable()();
TextColumn get lightColor => text().nullable()();
BoolColumn get backup => boolean().nullable()();
TextColumn get darkColor => text().nullable()();
BoolColumn get steps => boolean()();
TextColumn get date => text()();
BoolColumn get showDate => boolean()();
TextColumn get theme => text()();
BoolColumn get showSets => boolean()();
BoolColumn get noSound => boolean()();
BoolColumn get backup => boolean()();
TextColumn get date => text().nullable()();
BoolColumn get images => boolean().nullable()();
TextColumn get lightColor => text().nullable()();
BoolColumn get noSound => boolean().nullable()();
BoolColumn get notify => boolean().nullable()();
BoolColumn get showDate => boolean().nullable()();
BoolColumn get showSets => boolean().nullable()();
BoolColumn get showUnit => boolean().nullable()();
TextColumn get sound => text().nullable()();
BoolColumn get steps => boolean().nullable()();
TextColumn get theme => text().nullable()();
BoolColumn get vibrate => boolean()();
}