Lapangan Onetomanny

You should use ForeignKey:
from django.db import models

class Car(models.Model):
    manufacturer = models.ForeignKey(
        'Manufacturer',
        on_delete=models.CASCADE,
    )
MitchAloha