From: Olaf Wintermann Date: Thu, 10 Apr 2025 20:33:16 +0000 (+0200) Subject: extend attachment class to include also columns from the resources table X-Git-Url: https://uap-core.de/gitweb/?a=commitdiff_plain;h=b8882a91e730dbcf18be67e8554866c9af116d7e;p=note.git extend attachment class to include also columns from the resources table --- 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); }