17 lines
513 B
Dart
17 lines
513 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|||
|
|
|
||
|
|
part of 'insight_dao.dart';
|
||
|
|
|
||
|
|
// ignore_for_file: type=lint
|
||
|
|
mixin _$InsightDaoMixin on DatabaseAccessor<AppDatabase> {
|
||
|
|
$LlmInsightsTable get llmInsights => attachedDatabase.llmInsights;
|
||
|
|
InsightDaoManager get managers => InsightDaoManager(this);
|
||
|
|
}
|
||
|
|
|
||
|
|
class InsightDaoManager {
|
||
|
|
final _$InsightDaoMixin _db;
|
||
|
|
InsightDaoManager(this._db);
|
||
|
|
$$LlmInsightsTableTableManager get llmInsights =>
|
||
|
|
$$LlmInsightsTableTableManager(_db.attachedDatabase, _db.llmInsights);
|
||
|
|
}
|