fix(root): do not forget to move claimant_id when merging instructeur
This commit is contained in:
parent
d0599dd36b
commit
0eccb08f8b
1 changed files with 4 additions and 1 deletions
|
@ -302,9 +302,12 @@ class Instructeur < ApplicationRecord
|
|||
admin_with_new_instructeur.each do |admin|
|
||||
admin.instructeurs.delete(old_instructeur)
|
||||
end
|
||||
|
||||
old_instructeur.commentaires.update_all(instructeur_id: id)
|
||||
old_instructeur.bulk_messages.update_all(instructeur_id: id)
|
||||
|
||||
Avis
|
||||
.where(claimant_id: old_instructeur.id, claimant_type: Instructeur.name)
|
||||
.update_all(claimant_id: id)
|
||||
end
|
||||
|
||||
private
|
||||
|
|
Loading…
Reference in a new issue