class UpdateHighlightRoutineWorkouts < ActiveRecord::Migration[6.1]
  def change
    remove_column :routine_workouts, :highlight, :boolean
    add_column :routine_workouts, :highlight, :string, default: ""
  end
end