14 lines
517 B
Dart
14 lines
517 B
Dart
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
|
||
|
|
part of 'test_dao.dart';
|
||
|
|
|
||
|
|
// ignore_for_file: type=lint
|
||
|
|
mixin _$TestDaoMixin on DatabaseAccessor<AppDatabase> {
|
||
|
|
$TestsTable get tests => attachedDatabase.tests;
|
||
|
|
$TestQuestionsTable get testQuestions => attachedDatabase.testQuestions;
|
||
|
|
$CardPacksTable get cardPacks => attachedDatabase.cardPacks;
|
||
|
|
$TestPackRelationsTable get testPackRelations =>
|
||
|
|
attachedDatabase.testPackRelations;
|
||
|
|
$TestStatisticsTable get testStatistics => attachedDatabase.testStatistics;
|
||
|
|
}
|