1
0
mirror of https://github.com/django/django.git synced 2024-11-18 15:34:16 +00:00
django/tests/transaction_hooks/models.py

9 lines
151 B
Python

from django.db import models
class Thing(models.Model):
num = models.IntegerField()
def __str__(self):
return "Thing %d" % self.num