Neue Datenbank Struktur #156

Open
gelbeinhalb wants to merge 88 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()();
gelbeinhalb marked this conversation as resolved Outdated

Hier auch nicht nullable sondern empty string

Hier auch nicht nullable sondern empty string
DateTimeColumn get createdAt => dateTime()();
@override
Set<Column<Object>> get primaryKey => {id};