You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
242 B
7 lines
242 B
6 years ago
|
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
|