You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-08-07 23:03:36 +02:00
23 lines
781 B
Dart
23 lines
781 B
Dart
![]() |
import 'package:drift/drift.dart';
|
||
|
import 'package:immich_mobile/infrastructure/entities/remote_asset.entity.dart';
|
||
|
import 'package:immich_mobile/infrastructure/entities/user.entity.dart';
|
||
|
import 'package:immich_mobile/infrastructure/utils/drift_default.mixin.dart';
|
||
|
|
||
|
class StackEntity extends Table with DriftDefaultsMixin {
|
||
|
const StackEntity();
|
||
|
|
||
|
TextColumn get id => text()();
|
||
|
|
||
|
DateTimeColumn get createdAt => dateTime().withDefault(currentDateAndTime)();
|
||
|
|
||
|
DateTimeColumn get updatedAt => dateTime().withDefault(currentDateAndTime)();
|
||
|
|
||
|
TextColumn get ownerId =>
|
||
|
text().references(UserEntity, #id, onDelete: KeyAction.cascade)();
|
||
|
|
||
|
TextColumn get primaryAssetId => text().references(RemoteAssetEntity, #id)();
|
||
|
|
||
|
@override
|
||
|
Set<Column> get primaryKey => {id};
|
||
|
}
|