mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 13:28:40 +00:00
42 lines
1.7 KiB
Dart
42 lines
1.7 KiB
Dart
import 'package:drift/drift.dart';
|
|
|
|
class Contacts extends Table {
|
|
IntColumn get userId => integer()();
|
|
|
|
TextColumn get username => text().unique()();
|
|
TextColumn get displayName => text().nullable()();
|
|
TextColumn get nickName => text().nullable()();
|
|
TextColumn get avatarSvg => text().nullable()();
|
|
|
|
IntColumn get myAvatarCounter => integer().withDefault(const Constant(0))();
|
|
|
|
BoolColumn get accepted => boolean().withDefault(const Constant(false))();
|
|
BoolColumn get requested => boolean().withDefault(const Constant(false))();
|
|
BoolColumn get blocked => boolean().withDefault(const Constant(false))();
|
|
BoolColumn get verified => boolean().withDefault(const Constant(false))();
|
|
BoolColumn get archived => boolean().withDefault(const Constant(false))();
|
|
BoolColumn get pinned => boolean().withDefault(const Constant(false))();
|
|
BoolColumn get deleted => boolean().withDefault(const Constant(false))();
|
|
|
|
BoolColumn get alsoBestFriend =>
|
|
boolean().withDefault(const Constant(false))();
|
|
|
|
IntColumn get deleteMessagesAfterXMinutes =>
|
|
integer().withDefault(const Constant(60 * 24))();
|
|
|
|
DateTimeColumn get createdAt => dateTime().withDefault(currentDateAndTime)();
|
|
|
|
IntColumn get totalMediaCounter => integer().withDefault(const Constant(0))();
|
|
|
|
DateTimeColumn get lastMessageSend => dateTime().nullable()();
|
|
DateTimeColumn get lastMessageReceived => dateTime().nullable()();
|
|
DateTimeColumn get lastFlameCounterChange => dateTime().nullable()();
|
|
DateTimeColumn get lastFlameSync => dateTime().nullable()();
|
|
DateTimeColumn get lastMessageExchange =>
|
|
dateTime().withDefault(currentDateAndTime)();
|
|
|
|
IntColumn get flameCounter => integer().withDefault(const Constant(0))();
|
|
|
|
@override
|
|
Set<Column> get primaryKey => {userId};
|
|
}
|