Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. from synergy2.models.questions import Question
  2. from synergy2.models import db
  3.  
  4. questions = Question.query.filter_by(type='question_short_answer')
  5. for question in questions:
  6. question.answer = {'answer': question.answer, 'prefix': [''], 'suffix': ['']}
  7. db.session.commit()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement