mirror of
https://github.com/django/django.git
synced 2025-09-27 04:29:17 +00:00
Refs #34070 -- Fixed date format in Now() on SQLite.
Regression in 649b28eab6
.
This commit is contained in:
parent
3283120cca
commit
577dbcbb4f
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ class Now(Func):
|
||||||
return self.as_sql(
|
return self.as_sql(
|
||||||
compiler,
|
compiler,
|
||||||
connection,
|
connection,
|
||||||
template="STRFTIME('%%Y-%%m-%%d %%H:%%M:%%f', 'NOW')",
|
template="STRFTIME('%%%%Y-%%%%m-%%%%d %%%%H:%%%%M:%%%%f', 'NOW')",
|
||||||
**extra_context,
|
**extra_context,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue