mirror of
https://github.com/django/django.git
synced 2025-08-01 01:22:36 +00:00

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17189 bcc190cf-cafb-0310-a4f2-bffc1f526a37
10 lines
217 B
Python
10 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()
|