socialforge/db/migrate/20140618105213_migrate_cour...

14 lines
400 B
Ruby
Raw Normal View History

class MigrateCourseStudents < ActiveRecord::Migration
def change
# 原课程的学生数据迁移成新模式
StudentsForCourse.all.each do |student|
project = Project.find_by_id(student.course_id)
2014-06-26 10:01:44 +08:00
if project && project.course_extra
student.course_id = project.course_extra.id
student.save(:validate => false)
end
end
end
end