demarches-normaliennes/db/migrate/20240919151603_drop_dead_indices.rb
2024-09-23 14:53:37 +02:00

7 lines
155 B
Ruby

# frozen_string_literal: true
class DropDeadIndices < ActiveRecord::Migration[7.0]
def change
remove_index :traitements, :process_expired
end
end