fix: remove all deleted_at/soft-delete from mails — standard mail program logic only

This commit is contained in:
Agent Zero
2026-07-20 16:08:05 +02:00
parent fb92acb52b
commit 3a5520b46a
4 changed files with 71 additions and 91 deletions
@@ -0,0 +1,4 @@
-- Remove soft-delete (deleted_at) logic from mails
-- Mails now use standard mail program logic: folder_id for Trash, permanent DELETE for Trash empty
-- This migration clears all existing deleted_at values so no mails are hidden
UPDATE mails SET deleted_at = NULL;