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 9b66e58dc0 - Show all commits

View File

@@ -0,0 +1,9 @@
import 'package:drift/drift.dart';
class TeamTable extends Table {
TextColumn get id => text()();
TextColumn get name => text()();
@override
Set<Column<Object>> get primaryKey => {id};
}