From 1cca382ec1da1a727df39776aec869dd28d50d87 Mon Sep 17 00:00:00 2001 From: AntonyCheng <1911261716@qq.com> Date: Mon, 27 Apr 2026 13:34:03 +0800 Subject: [PATCH] fix: to ensure Docker Compose starts without errors, you need to add a notification. --- backend/alembic/env.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/alembic/env.py b/backend/alembic/env.py index 5c89ae8e5..fc6d3225a 100644 --- a/backend/alembic/env.py +++ b/backend/alembic/env.py @@ -31,6 +31,7 @@ from app.models.tool import Tool # noqa: F401 from app.models.trigger import AgentTrigger # noqa: F401 from app.models.agent_credential import AgentCredential # noqa: F401 +from app.models.notification import Notification # noqa: F401 config = context.config settings = get_settings()