Skip to content

Commit 72c1da2

Browse files
committed
fix use_llm default value causing test failure
1 parent 37deef1 commit 72c1da2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/rsptx/db/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ class AssignmentQuestion(Base, IdMixin):
688688
activities_required = Column(
689689
Integer
690690
) # only reading assignments will have this populated
691-
use_llm = Column(Web2PyBoolean, default=False)
691+
use_llm = Column(Web2PyBoolean, server_default="F")
692692

693693

694694
AssignmentQuestionValidator: TypeAlias = sqlalchemy_to_pydantic(AssignmentQuestion) # type: ignore

0 commit comments

Comments
 (0)