class AddGraduationDescriptorFieldsToStudents < ActiveRecord::Migration[6.0]
  def change
    change_table :Students, bulk: true do |t|
      t.string :diploma_level, after: :edfi_id
      t.string :employablilty_skills, after: :diploma_level
      t.string :employablilty_skills_pathway, after: :employablilty_skills
      t.string :post_secondary_competencies, after: :employablilty_skills_pathway
      t.string :post_secondary_competencies_pathway, after: :post_secondary_competencies
    end
  end
end
