class CreateDocxTranscripts < ActiveRecord::Migration[7.0]
  def change
    create_table :docx_transcripts do |t|
      t.integer :respondent_id
      t.jsonb :verbose_json
      t.index :respondent_id

      t.timestamps
    end
  end
end
