mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-03-03 23:46:47 +00:00
11 lines
330 B
Dart
11 lines
330 B
Dart
import 'package:drift/drift.dart';
|
|
|
|
@DataClassName('SignalPreKeyStore')
|
|
class SignalPreKeyStores extends Table {
|
|
IntColumn get preKeyId => integer()();
|
|
BlobColumn get preKey => blob()();
|
|
DateTimeColumn get createdAt => dateTime().withDefault(currentDateAndTime)();
|
|
|
|
@override
|
|
Set<Column> get primaryKey => {preKeyId};
|
|
}
|