pinakes-core: file management improvements; in-datatbase storage cleanup

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Ic186f9bf08683a14562bbe43743c04706a6a6964
This commit is contained in:
raf 2026-02-05 10:39:20 +03:00
commit f5371a30bb
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
8 changed files with 698 additions and 4 deletions

View file

@ -151,6 +151,9 @@ pub struct MediaItem {
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
/// Soft delete timestamp. If set, the item is in the trash.
pub deleted_at: Option<DateTime<Utc>>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]