demarches-normaliennes/db/migrate/20221122123809_add_libelle_index_to_procedures.rb
2024-08-22 09:26:48 +02:00

9 lines
209 B
Ruby

# frozen_string_literal: true
class AddLibelleIndexToProcedures < ActiveRecord::Migration[6.1]
disable_ddl_transaction!
def change
add_index :procedures, :libelle, algorithm: :concurrently
end
end