demarches-normaliennes/db/migrate/20240919151603_drop_dead_indices.rb

8 lines
155 B
Ruby
Raw Normal View History

2024-09-19 17:19:49 +02:00
# frozen_string_literal: true
class DropDeadIndices < ActiveRecord::Migration[7.0]
def change
remove_index :traitements, :process_expired
end
end