From 014a6a11dfa25d9a76d28ca6f3a86e090a500f44 Mon Sep 17 00:00:00 2001 From: "yunlu.wen" Date: Mon, 9 Mar 2026 16:45:09 +0800 Subject: [PATCH] fix model --- api/core/plugin/entities/base.py | 1 - api/core/plugin/entities/plugin.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/plugin/entities/base.py b/api/core/plugin/entities/base.py index d62084f295..bfec0d4302 100644 --- a/api/core/plugin/entities/base.py +++ b/api/core/plugin/entities/base.py @@ -7,4 +7,3 @@ class BasePluginEntity(BaseModel): id: str created_at: datetime updated_at: datetime - plugin_unique_identifier: str diff --git a/api/core/plugin/entities/plugin.py b/api/core/plugin/entities/plugin.py index 9e1a9edf82..ef7f5e697f 100644 --- a/api/core/plugin/entities/plugin.py +++ b/api/core/plugin/entities/plugin.py @@ -158,6 +158,7 @@ class PluginEntity(PluginInstallation): name: str installation_id: str version: str + plugin_unique_identifier: str @model_validator(mode="after") def set_plugin_id(self):