add description to player

This commit is contained in:
gelbeinhalb
2026-01-12 11:16:02 +01:00
parent 906c8d8450
commit 56562b22bb

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