9 lines
301 B
Python
9 lines
301 B
Python
|
from odoo import models, fields
|
||
|
|
||
|
class SchoolCourseStudent(models.Model):
|
||
|
_name = 'school.course.student'
|
||
|
_description = 'Enrolled Student'
|
||
|
|
||
|
course_id = fields.Many2one('school.course', string='Course', ondelete='cascade')
|
||
|
student_id = fields.Many2one('res.partner', string='Student')
|