Remove icon from prompts, update schemas for system prompt overrides

This commit is contained in:
CREDO23 2026-03-31 16:38:35 +02:00
parent 16f4d007e4
commit 329e979d48
5 changed files with 19 additions and 20 deletions

View file

@ -1806,7 +1806,6 @@ class Prompt(BaseModel, TimestampMixin):
name = Column(String(200), nullable=False)
prompt = Column(Text, nullable=False)
mode = Column(SQLAlchemyEnum(PromptMode), nullable=False)
icon = Column(String(50), nullable=True)
is_public = Column(Boolean, nullable=False, default=False)
user = relationship("User")