2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-04-10 21:48:54 +02:00
|
|
|
class AddPartialIndexOnDol < ActiveRecord::Migration[7.0]
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def change
|
|
|
|
add_index :dossier_operation_logs, :id, where: 'data is not null', algorithm: :concurrently
|
|
|
|
end
|
|
|
|
end
|