mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 01:11:13 +03: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;
|
||
|
|
}
|