mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	git-svn-id: http://code.djangoproject.com/svn/django/trunk@14421 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			18 lines
		
	
	
		
			425 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			425 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf-8
 | |
| """
 | |
| 1. Bare-bones model
 | |
| 
 | |
| This is a basic model with only two non-primary-key fields.
 | |
| """
 | |
| from django.db import models, DEFAULT_DB_ALIAS, connection
 | |
| 
 | |
| class Article(models.Model):
 | |
|     headline = models.CharField(max_length=100, default='Default headline')
 | |
|     pub_date = models.DateTimeField()
 | |
| 
 | |
|     class Meta:
 | |
|         ordering = ('pub_date','headline')
 | |
| 
 | |
|     def __unicode__(self):
 | |
|         return self.headline
 |