class AddAttachmentReelToTranscriptHighlights < ActiveRecord::Migration[7.0]
  def self.up
    change_table :transcript_highlights do |t|
      t.attachment :reel
    end
  end

  def self.down
    remove_attachment :transcript_highlights, :reel
  end
end
