class AddAttachmentVideoToReels < ActiveRecord::Migration[7.0]
  def self.up
    change_table :reels do |t|
      t.attachment :video
    end
  end

  def self.down
    remove_attachment :reels, :video
  end
end
