mirror of
https://github.com/immich-app/immich.git
synced 2025-08-11 09:16:31 -04:00
* fix: remove foreign constraint in stack.primaryAssetId * fix migration --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
22 lines
665 B
Dart
22 lines
665 B
Dart
import 'package:drift/drift.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()();
|
|
|
|
@override
|
|
Set<Column> get primaryKey => {id};
|
|
}
|