demarches-normaliennes/db/migrate/20220406144202_remove_column_instructeur_id_from_dossier_operation_log.rb
2022-05-04 14:24:11 +02:00

5 lines
187 B
Ruby

class RemoveColumnInstructeurIdFromDossierOperationLog < ActiveRecord::Migration[6.1]
def change
safety_assured { remove_column :dossier_operation_logs, :instructeur_id }
end
end