mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-13 12:31:09 +00:00
3d08e6c1fc
* Adding unique constraint for activity ap_id. Fixes #1878 * Removing is_activity_already_known
22 lines
411 B
SQL
22 lines
411 B
SQL
|
|
-- Delete the empty ap_ids
|
|
delete from activity where ap_id is null;
|
|
|
|
-- Make it required
|
|
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)
|
|
from activity
|
|
group by ap_id
|
|
);
|
|
|
|
-- The index
|
|
create unique index idx_activity_ap_id on activity(ap_id);
|
|
|
|
-- Drop the old index
|
|
drop index idx_activity_unique_apid;
|
|
|