Merge pull request #3519 from betagouv/improve-perf-v2

Add procedure_id index to type_de_piece_justificative
This commit is contained in:
Paul Chavard 2019-02-28 12:16:49 +01:00 committed by GitHub
commit c9f9de4f2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,5 @@
class AddProcedureIdIndexToTypesDePieceJustificative < ActiveRecord::Migration[5.2]
def change
add_index :types_de_piece_justificative, :procedure_id
end
end