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

7 lines
202 B
Ruby

# frozen_string_literal: true
class RemoveChampsRowIndex < ActiveRecord::Migration[6.1]
def change
remove_index :champs, name: "index_champs_on_type_de_champ_id_and_dossier_id_and_row"
end
end