mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
073d987a84
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17189 bcc190cf-cafb-0310-a4f2-bffc1f526a37
11 lines
217 B
Python
11 lines
217 B
Python
from django.db import models
|
|
|
|
class Mod(models.Model):
|
|
fld = models.IntegerField()
|
|
|
|
class M2mA(models.Model):
|
|
others = models.ManyToManyField('M2mB')
|
|
|
|
class M2mB(models.Model):
|
|
fld = models.IntegerField()
|