from odoo import fields, models class McProgram(models.Model): _inherit = "mc.program" grading_scale_id = fields.Many2one( "mc.grading.scale", string="Grading Scale", help="Drives how marks in this program's exams turn into letter grades. " "Change it here to change every future grade computation - no code.", )