Skip to content

Commit

Permalink
Add element_ids field to DBModelingFeedback model
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonWehrhahn committed Nov 28, 2024
1 parent e15d11c commit 1e8e21d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions athena/athena/models/db_modeling_feedback.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
class DBModelingFeedback(DBFeedback, Base):
__tablename__ = "modeling_feedbacks"

element_ids: Optional[list[str]] = Column(JSON) # type: ignore
reference: Optional[str] = Column(String, nullable=True) # type: ignore

exercise_id = Column(BigIntegerWithAutoincrement, ForeignKey("modeling_exercises.id", ondelete="CASCADE"), index=True)
Expand Down

0 comments on commit 1e8e21d

Please sign in to comment.