Neue Datenbank Struktur #156

Merged
flixcoo merged 94 commits from feature/88-neue-datenbank-struktur into development 2026-03-04 19:02:03 +00:00
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};