mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
d0da38410b
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13950 bcc190cf-cafb-0310-a4f2-bffc1f526a37
13 lines
316 B
Python
13 lines
316 B
Python
"""
|
|
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)
|
|
|