Skip to content
Snippets Groups Projects

Several multiple choice option fixes

Merged Ghost User requested to merge mcq-fixes into develop
1 unresolved thread
Files
2
+ 1
1
@@ -124,7 +124,7 @@ class Solution(db.Model):
@@ -124,7 +124,7 @@ class Solution(db.Model):
submission_id = Column(Integer, ForeignKey('submission.id'), nullable=False) # backref submission
submission_id = Column(Integer, ForeignKey('submission.id'), nullable=False) # backref submission
problem_id = Column(Integer, ForeignKey('problem.id'), nullable=False) # backref problem
problem_id = Column(Integer, ForeignKey('problem.id'), nullable=False) # backref problem
# if grader_id, and thus graded_by, is null, this has not yet been graded
# if grader_id, and thus graded_by, is null, this has not yet been graded
f_id = Column(Integer, ForeignKey('grader.id'), nullable=True) # backref graded_by
grader_id = Column(Integer, ForeignKey('grader.id'), nullable=True) # backref graded_by
graded_at = Column(DateTime, nullable=True)
graded_at = Column(DateTime, nullable=True)
feedback = db.relationship('FeedbackOption', secondary=solution_feedback, backref='solutions', lazy='subquery')
feedback = db.relationship('FeedbackOption', secondary=solution_feedback, backref='solutions', lazy='subquery')
remarks = Column(Text)
remarks = Column(Text)
Loading