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 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};