From b5cca030607ff2a4164006d897a6a977170421ab Mon Sep 17 00:00:00 2001 From: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Date: Wed, 27 May 2026 19:21:55 +0530 Subject: [PATCH] review changes --- .../migrations/1779379200000-DeleteMismatchedAssetFaces.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/schema/migrations/1779379200000-DeleteMismatchedAssetFaces.ts b/server/src/schema/migrations/1779379200000-DeleteMismatchedAssetFaces.ts index d631931c41..d0387c4038 100644 --- a/server/src/schema/migrations/1779379200000-DeleteMismatchedAssetFaces.ts +++ b/server/src/schema/migrations/1779379200000-DeleteMismatchedAssetFaces.ts @@ -7,7 +7,7 @@ export async function up(db: Kysely): Promise { USING person, asset WHERE asset_face."personId" = person.id AND asset_face."assetId" = asset.id - AND person."ownerId" <> asset."ownerId" + AND person."ownerId" != asset."ownerId" `.execute(db); }