class AddTimeToStudentMedicationGiven < ActiveRecord::Migration[6.0]
  def change
    add_column :StudentMedicationGiven, :time, :time, after: :TimeGiven
    change_column :StudentMedicationGiven, :TimeGiven, :time, null: true, default: nil
  end
end
