class AddDescriptorNameToGraduationPlans < ActiveRecord::Migration[6.1]
  def change
    add_column :ed_fi_graduation_plans, :plan_descriptor_name, :string,
      after: :plan_descriptor
    add_column :ed_fi_graduation_plans, :alternative_plan_descriptor_name, :string,
      after: :alternative_plan_descriptor
  end
end
