socialforge/db/migrate/20140618105213_migrate_cour...

14 lines
356 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)
if project
student.course_id = project.course_extra.id
student.save
end
end
end
end