class AddFeedbackToWhisperTranscripts < ActiveRecord::Migration[7.0]
  def change
    add_column :whisper_transcripts, :feedback, :text
    add_column :whisper_transcripts, :rating, :integer
  end
end
