summaryrefslogtreecommitdiff
path: root/tests/transaction_hooks/models.py
blob: d3abbfef91dcbe5c6c06084bc670eece8b188c01 (plain)
1
2
3
4
5
6
7
8
from django.db import models


class Thing(models.Model):
    num = models.IntegerField()

    def __str__(self):
        return "Thing %d" % self.num