mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			389 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			389 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.db import models
 | |
| from django.utils import timezone
 | |
| 
 | |
| 
 | |
| class RelatedModel(models.Model):
 | |
|     simple = models.ForeignKey("SimpleModel", models.CASCADE, null=True)
 | |
| 
 | |
| 
 | |
| class SimpleModel(models.Model):
 | |
|     field = models.IntegerField()
 | |
|     created = models.DateTimeField(default=timezone.now)
 | |
| 
 | |
| 
 | |
| class ManyToManyModel(models.Model):
 | |
|     simples = models.ManyToManyField("SimpleModel")
 |