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