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 56562b22bb - Show all commits

View File

@@ -4,6 +4,7 @@ class PlayerTable extends Table {
TextColumn get id => text()();
TextColumn get name => text()();
DateTimeColumn get createdAt => dateTime()();
TextColumn get description => text().nullable()();
@override
Set<Column<Object>> get primaryKey => {id};