class AddOffsetToTranscriptSections < ActiveRecord::Migration[7.0]
  def change
    add_column :transcript_sections, :offset, :integer
    add_index :transcript_sections, :offset
  end
end
