From f6b96370b8ac228ce63b3dad3e2e0ca962ad2ff5 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 23 Nov 2021 14:30:16 -0500 Subject: [PATCH] Fix API dupes query. #1878 --- .../up.sql | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/migrations/2021-11-22-135324_add_activity_ap_id_index/up.sql b/migrations/2021-11-22-135324_add_activity_ap_id_index/up.sql index fedd94f5e..84530508e 100644 --- a/migrations/2021-11-22-135324_add_activity_ap_id_index/up.sql +++ b/migrations/2021-11-22-135324_add_activity_ap_id_index/up.sql @@ -6,13 +6,13 @@ delete from activity where ap_id is null; alter table activity alter column ap_id set not null; -- Delete dupes, keeping the first one -delete -from activity -where id not in ( - select min(id) +delete from activity a using ( + select min(id) as id, ap_id from activity - group by ap_id -); + group by ap_id having count(*) > 1 +) b +where a.ap_id = b.ap_id +and a.id <> b.id; -- The index create unique index idx_activity_ap_id on activity(ap_id);