mirror of
https://github.com/django/django.git
synced 2024-12-23 17:46:27 +00:00
9 lines
144 B
Python
9 lines
144 B
Python
|
from django.db import models
|
||
|
|
||
|
|
||
|
class Number(models.Model):
|
||
|
num = models.IntegerField()
|
||
|
|
||
|
def __str__(self):
|
||
|
return str(self.num)
|