mirror of
				https://github.com/django/django.git
				synced 2025-10-30 19:47:35 +00:00 
			
		
		
		
	 7deb25b8dd
			
		
	
	
		7deb25b8dd
		
	
	
	
	
		
			
			git-svn-id: http://code.djangoproject.com/svn/django/trunk@16739 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			440 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			No EOL
		
	
	
		
			440 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.db import models
 | |
| 
 | |
| 
 | |
| class Country(models.Model):
 | |
|     name = models.CharField(max_length=255)
 | |
|     iso_two_letter = models.CharField(max_length=2)
 | |
| 
 | |
| class Place(models.Model):
 | |
|     name = models.CharField(max_length=100)
 | |
| 
 | |
|     class Meta:
 | |
|         abstract = True
 | |
| 
 | |
| class Restaurant(Place):
 | |
|     pass
 | |
| 
 | |
| class Pizzeria(Restaurant):
 | |
|     pass
 | |
| 
 | |
| class State(models.Model):
 | |
|     two_letter_code = models.CharField(max_length=2, primary_key=True) |