Files
game-tracker/lib/data/db/tables/statistic_table.dart
Felix Kirchner 807ae61df7
Some checks failed
Pull Request Pipeline / lint (pull_request) Failing after 47s
Pull Request Pipeline / test (pull_request) Successful in 49s
Pull Request Pipeline / localizations (pull_request) Successful in 27s
feat: basic database functionality
2026-05-24 13:52:27 +02:00

11 lines
253 B
Dart

import 'package:drift/drift.dart';
class StatisticTable extends Table {
TextColumn get id => text()();
TextColumn get type => text()();
TextColumn get timeframe => text().nullable()();
@override
Set<Column<Object>> get primaryKey => {id};
}