[4.0.x] Added default values to Entry's fields in making queries docs.
This makes it easier to create a data in examples.
Backport of 1283458baa
from main
This commit is contained in:
parent
76d24d5f16
commit
e9b023b8e4
|
@ -17,6 +17,8 @@ models, which comprise a blog application:
|
|||
|
||||
.. code-block:: python
|
||||
|
||||
from datetime import date
|
||||
|
||||
from django.db import models
|
||||
|
||||
class Blog(models.Model):
|
||||
|
@ -38,11 +40,11 @@ models, which comprise a blog application:
|
|||
headline = models.CharField(max_length=255)
|
||||
body_text = models.TextField()
|
||||
pub_date = models.DateField()
|
||||
mod_date = models.DateField()
|
||||
mod_date = models.DateField(default=date.today)
|
||||
authors = models.ManyToManyField(Author)
|
||||
number_of_comments = models.IntegerField()
|
||||
number_of_pingbacks = models.IntegerField()
|
||||
rating = models.IntegerField()
|
||||
number_of_comments = models.IntegerField(default=0)
|
||||
number_of_pingbacks = models.IntegerField(default=0)
|
||||
rating = models.IntegerField(default=5)
|
||||
|
||||
def __str__(self):
|
||||
return self.headline
|
||||
|
|
Loading…
Reference in New Issue