WIP: Neue Datenbank Struktur #156

Draft
gelbeinhalb wants to merge 11 commits from feature/88-neue-datenbank-struktur into development
Showing only changes of commit 189daf76dd - Show all commits

View File

@@ -3,8 +3,8 @@ import 'package:drift/drift.dart';
class PlayerTable extends Table {
TextColumn get id => text()();
TextColumn get name => text()();
DateTimeColumn get createdAt => dateTime()();
TextColumn get description => text().nullable()();
DateTimeColumn get createdAt => dateTime()();
@override
Set<Column<Object>> get primaryKey => {id};