1
0
mirror of https://github.com/django/django.git synced 2024-12-28 12:06:22 +00:00
django/tests/test_utils/models.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
467 B
Python
Raw Normal View History

from django.db import models
2014-09-30 17:24:20 +00:00
class Car(models.Model):
name = models.CharField(max_length=100)
2014-09-30 17:24:20 +00:00
class Person(models.Model):
name = models.CharField(max_length=100)
cars = models.ManyToManyField(Car, through="PossessedCar")
data = models.BinaryField(null=True)
2014-09-30 17:24:20 +00:00
class PossessedCar(models.Model):
car = models.ForeignKey(Car, models.CASCADE)
belongs_to = models.ForeignKey(
Person, models.CASCADE, related_name="possessed_cars"
)