class AddStepsToPlan < ActiveRecord::Migration[6.1]

  def change
    add_column :plans, :steps, :integer, default: 0
    add_column :plans, :cardio_time, :integer, default: 30
  end

end
