class CreateTranscriptSections < ActiveRecord::Migration[7.0]
  def change
    create_table :transcript_sections do |t|
      t.string :name
      t.text :content
      t.integer :respondent_id
      t.index :respondent_id

      t.timestamps
    end
  end
end
