Our Personal Data Server from scratch!
0

Configure Feed

Select the types of activity you want to include in your feed.

tranquil-pds / migrations / 20260122_backup_storage_key_unique.sql
246 B 8 lines
1DELETE FROM account_backups a 2WHERE EXISTS ( 3 SELECT 1 FROM account_backups b 4 WHERE a.storage_key = b.storage_key 5 AND a.created_at < b.created_at 6); 7 8CREATE UNIQUE INDEX idx_account_backups_storage_key ON account_backups(storage_key);