mirror of
https://github.com/django/django.git
synced 2025-09-26 20:19:16 +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(
|
||||
compiler,
|
||||
connection,
|
||||
template="STRFTIME('%%Y-%%m-%%d %%H:%%M:%%f', 'NOW')",
|
||||
template="STRFTIME('%%%%Y-%%%%m-%%%%d %%%%H:%%%%M:%%%%f', 'NOW')",
|
||||
**extra_context,
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue