Suppose I have the following Models defined in django (not tested):
class CarMaker(models.Model):
name = models.CharField("Name of car maker",
max_length=40)
class Car(models.Model):
car_id = models.IntegerField("ID for this particular car")
maker = models.ForeignKey("Maker of this car")
Is there a standard django way to ensure that all Cars with the same maker have a unique car_id, without making car_id unique for all Cars?
E.g. There are two car makers, "Skoda" and "Renault". There are 400 Cars made by Skoda, and 300 Cars made by Renault. I want to ensure that car_id is unique for all Skodas, and unique for all Renaults, but not necessarily unique for all Cars.
Thanks