mirror of
https://tangled.org/tranquil.farm/tranquil-pds
synced 2026-02-10 06:10:09 +00:00
9 lines
246 B
SQL
9 lines
246 B
SQL
DELETE FROM account_backups a
|
|
WHERE EXISTS (
|
|
SELECT 1 FROM account_backups b
|
|
WHERE a.storage_key = b.storage_key
|
|
AND a.created_at < b.created_at
|
|
);
|
|
|
|
CREATE UNIQUE INDEX idx_account_backups_storage_key ON account_backups(storage_key);
|