mirror of
https://github.com/django/django.git
synced 2024-11-24 02:47:35 +01: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)
|