mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-04-03 09:28:25 +02:00
make field nullable
This commit is contained in:
parent
5e9b2e41ae
commit
eea6f2749a
@ -22,8 +22,7 @@ def upgrade() -> None:
|
||||
sa.Column(
|
||||
"refined_answer_improvement",
|
||||
sa.Boolean(),
|
||||
server_default=sa.true(),
|
||||
nullable=False,
|
||||
nullable=True,
|
||||
),
|
||||
)
|
||||
|
||||
|
@ -1204,7 +1204,7 @@ class ChatMessage(Base):
|
||||
DateTime(timezone=True), server_default=func.now()
|
||||
)
|
||||
|
||||
refined_answer_improvement: Mapped[bool] = mapped_column(Boolean, default=True)
|
||||
refined_answer_improvement: Mapped[bool] = mapped_column(Boolean, nullable=True)
|
||||
|
||||
chat_session: Mapped[ChatSession] = relationship("ChatSession")
|
||||
prompt: Mapped[Optional["Prompt"]] = relationship("Prompt")
|
||||
|
Loading…
x
Reference in New Issue
Block a user