fix analysis

This commit is contained in:
Salvatore Giordano
2021-03-16 16:52:44 +01:00
parent c66212c37c
commit a14045a09d
5 changed files with 10 additions and 11 deletions
@@ -17,7 +17,7 @@ class Channels extends Table {
TextColumn get config => text().map(MapConverter<Object>())();
/// True if this channel entity is frozen
BoolColumn get frozen => boolean().withDefault(Constant(false))();
BoolColumn get frozen => boolean().withDefault(const Constant(false))();
/// The date of the last message
DateTimeColumn get lastMessageAt => dateTime().nullable()();