2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-11-22 13:59:03 +01:00
|
|
|
class AddLibelleIndexToProcedures < ActiveRecord::Migration[6.1]
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def change
|
|
|
|
add_index :procedures, :libelle, algorithm: :concurrently
|
|
|
|
end
|
|
|
|
end
|