# frozen_string_literal: true class AddIndexOnVulnerabilityExportsFileStore < ActiveRecord::Migration[6.0] include Gitlab::Database::MigrationHelpers DOWNTIME = false disable_ddl_transaction! def up add_concurrent_index :vulnerability_exports, :file_store end def down remove_concurrent_index :vulnerability_exports, :file_store end end