1
0
mirror of https://github.com/django/django.git synced 2025-01-27 02:29:55 +00:00

13 lines
316 B
Python
Raw Normal View History

"""
Model for testing arithmetic expressions.
"""
from django.db import models
class Number(models.Model):
integer = models.IntegerField(db_column='the_integer')
float = models.FloatField(null=True, db_column='the_float')
def __unicode__(self):
return u'%i, %.3f' % (self.integer, self.float)