mirror of
https://github.com/Hopiu/django.git
synced 2026-03-20 07:50:25 +00:00
11 lines
242 B
Python
11 lines
242 B
Python
|
|
from django.db import models
|
||
|
|
from django.utils.encoding import python_2_unicode_compatible
|
||
|
|
|
||
|
|
|
||
|
|
@python_2_unicode_compatible
|
||
|
|
class Thing(models.Model):
|
||
|
|
num = models.IntegerField()
|
||
|
|
|
||
|
|
def __str__(self):
|
||
|
|
return "Thing %d" % self.num
|