dart format

This commit is contained in:
2025-06-28 10:32:43 +02:00
parent 3ab5305bba
commit d5b040b177
9 changed files with 22 additions and 12 deletions

View File

@@ -2,11 +2,10 @@ import 'package:drift/drift.dart';
import 'group_table.dart';
import 'user_table.dart';
class UserGroupTable extends Table {
TextColumn get userId => text().references(UserTable, #id)();
TextColumn get groupId => text().references(GroupTable, #id)();
@override
Set<Column<Object>> get primaryKey => {userId, groupId};
}
}