From 25fab0e34f8e0836f617b6741b55d4576d650e45 Mon Sep 17 00:00:00 2001 From: Brieuc Dubois <git@bhasher.com> Date: Wed, 5 Feb 2025 18:25:46 +0100 Subject: [PATCH] Fix study create error --- backend/app/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/app/models.py b/backend/app/models.py index 70bf39b6..7385a449 100644 --- a/backend/app/models.py +++ b/backend/app/models.py @@ -287,7 +287,6 @@ class Study(Base): start_date = Column(DateTime) end_date = Column(DateTime) chat_duration = Column(Integer) - typing_test = Column(Boolean) users = relationship("User", secondary="study_users", back_populates="studies") surveys = relationship( -- GitLab