2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-12-26 23:11:49 +01:00
|
|
|
class AddVirusScanResultIndex < ActiveRecord::Migration[6.1]
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def change
|
|
|
|
add_index :active_storage_blobs, :virus_scan_result, algorithm: :concurrently
|
|
|
|
end
|
|
|
|
end
|