mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 03:04:16 -04:00
pr feedback
This commit is contained in:
parent
5fa42c7718
commit
aa32bed6b3
@ -15,4 +15,10 @@ class PartnerEntity extends Table with DriftDefaultsMixin {
|
||||
|
||||
@override
|
||||
Set<Column> get primaryKey => {sharedById, sharedWithId};
|
||||
|
||||
@override
|
||||
bool get isStrict => true;
|
||||
|
||||
@override
|
||||
bool get withoutRowId => true;
|
||||
}
|
||||
|
@ -90,4 +90,10 @@ class UserEntity extends Table with DriftDefaultsMixin {
|
||||
|
||||
@override
|
||||
Set<Column> get primaryKey => {id};
|
||||
|
||||
@override
|
||||
bool get isStrict => true;
|
||||
|
||||
@override
|
||||
bool get withoutRowId => true;
|
||||
}
|
||||
|
@ -12,6 +12,12 @@ class UserMetadataEntity extends Table with DriftDefaultsMixin {
|
||||
|
||||
@override
|
||||
Set<Column> get primaryKey => {userId};
|
||||
|
||||
@override
|
||||
bool get isStrict => true;
|
||||
|
||||
@override
|
||||
bool get withoutRowId => true;
|
||||
}
|
||||
|
||||
final JsonTypeConverter2<UserPreferences, String, Object?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user