demarches-normaliennes/db/migrate/20240919145757_drop_unused_index.rb
2024-09-19 17:05:32 +02:00

9 lines
179 B
Ruby

# frozen_string_literal: true
class DropUnusedIndex < ActiveRecord::Migration[7.0]
disable_ddl_transaction!
def change
remove_index :champs, :type_de_champ_id
end
end