class AddColumnsToTranscriptHighlights < ActiveRecord::Migration[7.0]
  def change
    change_table :transcript_highlights, bulk: true do |t|
      t.integer :manual_start_line
      t.integer :manual_end_line
      t.boolean :manual, default: false, null: false
    end
  end
end
