From b8882a91e730dbcf18be67e8554866c9af116d7e Mon Sep 17 00:00:00 2001 From: Olaf Wintermann Date: Thu, 10 Apr 2025 22:33:16 +0200 Subject: [PATCH] extend attachment class to include also columns from the resources table --- application/types.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/types.c b/application/types.c index 66525e9..d87c856 100644 --- a/application/types.c +++ b/application/types.c @@ -83,4 +83,6 @@ void register_types() { dbuClassAdd(attachments_class, Attachment, attachment_resource_id); dbuClassAdd(attachments_class, Attachment, parent_resource_id); dbuClassAdd(attachments_class, Attachment, type); + dbuClassAdd(attachments_class, Attachment, name); + dbuClassAdd(attachments_class, Attachment, bin_content); } -- 2.43.5