rename cloud id

This commit is contained in:
shenlong-tanwen
2025-09-09 22:12:16 +05:30
parent 84fcbd4df8
commit 89bb0ca0c9
12 changed files with 92 additions and 92 deletions
@@ -17,7 +17,7 @@ class LocalAssetEntity extends Table with DriftDefaultsMixin, AssetEntityMixin {
IntColumn get orientation => integer().withDefault(const Constant(0))();
TextColumn get cloudId => text().nullable()();
TextColumn get iCloudId => text().nullable()();
@override
Set<Column> get primaryKey => {id};
@@ -37,6 +37,6 @@ extension LocalAssetEntityDataDomainExtension on LocalAssetEntityData {
width: width,
remoteId: null,
orientation: orientation,
cloudId: cloudId,
cloudId: iCloudId,
);
}