demarches-normaliennes/db/migrate/20240325160237_remove_index_champs_on_private.rb
2024-03-25 17:14:03 +01:00

5 lines
145 B
Ruby

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