class CreateWhisperTranscripts < ActiveRecord::Migration[7.0]
  def change
    create_table :whisper_transcripts do |t|
      t.integer :respondent_id
      t.text :text

      t.timestamps
    end
  end
end
