mirror of https://github.com/LemmyNet/lemmy.git
Merge pull request #1951 from LemmyNet/fix_ap_id_dupes_query
Fix API dupes query. #1878email-verification
commit
7363b19f01
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue