DEBSOURCES
Skip Quicknav
sources / python-django / 2%3A2.2.28-1~deb11u2 / tests / transaction_hooks / models.py
12345678
from django.db import models class Thing(models.Model): num = models.IntegerField() def __str__(self): return "Thing %d" % self.num