educoder/db/migrate/20190508090916_migrate_new_...

7 lines
242 B

class MigrateNewStudentWorkStatus < ActiveRecord::Migration[5.2]
def change
homeworks = HomeworkCommon.where(allow_late: 0)
StudentWork.where(homework_common_id: homeworks, work_status: 2).update_all(work_status: 1)
end
end