mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	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)
 | |
| 
 |