mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
10 lines
161 B
Dart
10 lines
161 B
Dart
|
|
import 'package:drift/drift.dart';
|
||
|
|
|
||
|
|
mixin DriftDefaultsMixin on Table {
|
||
|
|
@override
|
||
|
|
bool get isStrict => true;
|
||
|
|
|
||
|
|
@override
|
||
|
|
bool get withoutRowId => true;
|
||
|
|
}
|