mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	of the AutoField column rather than always assume "ID". git-svn-id: http://code.djangoproject.com/svn/django/trunk@6195 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf-8
 | |
| from django.db import models
 | |
| 
 | |
| CHOICES = (
 | |
|     (1, 'first'),
 | |
|     (2, 'second'),
 | |
| )
 | |
| 
 | |
| class Article(models.Model):
 | |
|     headline = models.CharField(max_length=100, default='Default headline')
 | |
|     pub_date = models.DateTimeField()
 | |
|     status = models.IntegerField(blank=True, null=True, choices=CHOICES)
 | |
|     misc_data = models.CharField(max_length=100, blank=True)
 | |
| 
 | |
|     class Meta:
 | |
|         ordering = ('pub_date','headline')
 | |
|         # A utf-8 verbose name (Ångström's Articles) to test they are valid.
 | |
|         verbose_name = "\xc3\x85ngstr\xc3\xb6m's Articles"
 | |
| 
 | |
|     def __unicode__(self):
 | |
|         return self.headline
 | |
| 
 | |
| class Movie(models.Model):
 | |
|     #5218: Test models with non-default primary keys / AutoFields
 | |
|     movie_id = models.AutoField(primary_key=True)
 | |
|     name = models.CharField(max_length=60)
 | |
| 
 | |
| __test__ = {'API_TESTS': """
 | |
| (NOTE: Part of the regression test here is merely parsing the model
 | |
| declaration. The verbose_name, in particular, did not always work.)
 | |
| 
 | |
| An empty choice field should return None for the display name.
 | |
| 
 | |
| >>> from datetime import datetime
 | |
| >>> a = Article(headline="Look at me!", pub_date=datetime.now())
 | |
| >>> a.save()
 | |
| >>> a.get_status_display() is None
 | |
| True
 | |
| 
 | |
| Empty strings should be returned as Unicode
 | |
| >>> a2 = Article.objects.get(pk=a.id)
 | |
| >>> a2.misc_data
 | |
| u''
 | |
| """
 | |
| }
 |