用户提交试卷的迁移

dev_ec
SylorHuang 5 years ago
parent bad129a0cc
commit f5a31fcc50

@ -0,0 +1,22 @@
class ChangeUserP02389416Exercise < ActiveRecord::Migration[5.2]
def change
puts "====> start_to_create user exercise_answer"
#分别为第811141516,20,21,26
# 分数分别为2分2分5分2分2分2分2分2分 合计19分
question_ids = [37411,37414,37417,37418,37419,37423,37424,37429]
choice_ids = [117788,117797,117806,117809,117811,117816,117818,117828]
question_ids.each_with_index do |q, index|
ExerciseAnswer.create(user_id: 45442, exercise_question_id: q, exercise_choice_id: choice_ids[index])
end
ex_user = ExerciseUser.where(user_id: 45442, exercise_id: 2561)&.first
if ex_user.present?
obj_score = ex_user.objective_score.to_i + 19
total_score = ex_user.score.to_i + 19
ex_user.update_attributes(score: total_score, objective_score: obj_score)
end
puts "====> end_to_create user exercise_answer"
end
end
Loading…
Cancel
Save