Hi everyone,
I have this relation:
_name='student.student'
_column={
'parent_ids':fields.many2many('school.parent','student_parent_rel','student_id','parent_id','Parent List'),
}
_name='parent.parent'
'student_ids':fields.many2many('school.student','student_parent_rel','student_id','parent_id','Student List'),
Suppose I'm going to delete the student or the parent how automatcally delete the other record.
Thanks for your help