mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			639 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			639 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.db import models
 | |
| from django.utils.encoding import python_2_unicode_compatible
 | |
| 
 | |
| 
 | |
| @python_2_unicode_compatible
 | |
| class Author(models.Model):
 | |
|     name = models.CharField(max_length=20)
 | |
|     age = models.IntegerField(null=True)
 | |
|     birthdate = models.DateField(null=True)
 | |
|     average_rating = models.FloatField(null=True)
 | |
| 
 | |
|     def __str__(self):
 | |
|         return self.name
 | |
| 
 | |
| 
 | |
| class Article(models.Model):
 | |
|     author = models.ForeignKey(Author, on_delete=models.CASCADE)
 | |
| 
 | |
| 
 | |
| @python_2_unicode_compatible
 | |
| class MySQLUnixTimestamp(models.Model):
 | |
|     timestamp = models.PositiveIntegerField()
 | |
| 
 | |
|     def __str__(self):
 | |
|         return self.name
 |