mirror of
https://github.com/django/django.git
synced 2025-01-22 00:02:15 +00:00
Fixed field default in dates tests.
This commit is contained in:
parent
c7b97ac3a7
commit
7d8df4ad03
@ -5,7 +5,7 @@ from django.utils import timezone
|
||||
class Article(models.Model):
|
||||
title = models.CharField(max_length=100)
|
||||
pub_date = models.DateField()
|
||||
pub_datetime = models.DateTimeField(default=timezone.now())
|
||||
pub_datetime = models.DateTimeField(default=timezone.now)
|
||||
|
||||
categories = models.ManyToManyField("Category", related_name="articles")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user