demarches-normaliennes/db/migrate/20240919145757_drop_unused_index.rb

10 lines
179 B
Ruby
Raw Normal View History

2024-09-19 17:04:50 +02:00
# frozen_string_literal: true
class DropUnusedIndex < ActiveRecord::Migration[7.0]
disable_ddl_transaction!
def change
remove_index :champs, :type_de_champ_id
end
end