0
0
mirror of https://github.com/django/django.git synced 2024-11-24 02:47:35 +01:00
django/tests/xor_lookups/models.py

9 lines
144 B
Python

from django.db import models
class Number(models.Model):
num = models.IntegerField()
def __str__(self):
return str(self.num)