summaryrefslogtreecommitdiff
path: root/tests/transactions_regress/models.py
blob: e09e81d93d037bbb67930312ef9a9c724fd08202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from django.db import models


class Mod(models.Model):
    fld = models.IntegerField()

class SubMod(Mod):
    cnt = models.IntegerField(unique=True)

class M2mA(models.Model):
    others = models.ManyToManyField('M2mB')


class M2mB(models.Model):
    fld = models.IntegerField()