django1/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-10-01 01:24:20 +08:00
class Car(models.Model):
name = models.CharField(max_length=100)
2014-10-01 01:24:20 +08:00
class Person(models.Model):
name = models.CharField(max_length=100)
cars = models.ManyToManyField(Car, through="PossessedCar")
data = models.BinaryField(null=True)
2014-10-01 01:24:20 +08:00
class PossessedCar(models.Model):
car = models.ForeignKey(Car, models.CASCADE)
belongs_to = models.ForeignKey(
Person, models.CASCADE, related_name="possessed_cars"
)