Skip to content
Snippets Groups Projects

Several multiple choice option fixes

Merged Ghost User requested to merge mcq-fixes into develop
1 unresolved thread
4 files
+ 42
34
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 1
3
@@ -166,11 +166,9 @@ class MultipleChoiceOption(db.Model):
x = Column(Integer, nullable=False)
y = Column(Integer, nullable=False)
page = Column(Integer, nullable=False)
label = Column(String, nullable=True)
problem_id = Column(Integer, ForeignKey('solution.id'), nullable=False)
problem_id = Column(Integer, ForeignKey('problem.id'), nullable=False)
feedback_id = Column(Integer, ForeignKey('feedback_option.id'), nullable=True)
Loading