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

7 lines
176 B
Ruby

# frozen_string_literal: true
class RemoveIndexChampsOnPrivate < ActiveRecord::Migration[7.0]
def change
remove_index :champs, name: "index_champs_on_private"
end
end