From a31829f2ff6892f5fef253b729f03ad4560cd788 Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Sat, 4 Jul 2026 00:29:38 +0000 Subject: [PATCH] feat(core): register Attachment model --- app/models/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/models/__init__.py b/app/models/__init__.py index cafb192..efb899e 100644 --- a/app/models/__init__.py +++ b/app/models/__init__.py @@ -8,6 +8,7 @@ from app.models.currency import Currency from app.models.tax import TaxRate from app.models.sequence import Sequence from app.models.system_settings import SystemSettings +from app.models.attachment import Attachment from app.models.notification import Notification from app.models.plugin import Plugin, PluginMigration from app.models.role import Role @@ -33,6 +34,8 @@ __all__ = [ "TaxRate", "Sequence", "SystemSettings", + "Attachment", + "Attachment", "SystemSettings", "Sequence", "TaxRate",