Skip to content

Instantly share code, notes, and snippets.

@egitimplus
Created November 5, 2020 21:21
Show Gist options
  • Save egitimplus/9a17429514a66b20a887935581f59f47 to your computer and use it in GitHub Desktop.
Save egitimplus/9a17429514a66b20a887935581f59f47 to your computer and use it in GitHub Desktop.
from django.db import models
class Car(models.Model):
name = models.CharField(max_length=255)
class CarModel(models.Model):
name = models.CharField(max_length=255)
car = models.ForeignKey(Car, on_delete=models.CASCADE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment