diff options
author | Johannes Hoppe <info@johanneshoppe.com> | 2019-07-24 08:41:32 +0200 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-09-09 10:51:07 +0200 |
commit | 736e7d44de395b867011ff9237dc5fdcfd28ee66 (patch) | |
tree | 007f0169f81b2340308a63c8aeb1e0903ab5a869 /django/db/backends/oracle/utils.py | |
parent | b6251956b69512bf230322bd7a49b629ca8455c6 (diff) | |
download | django-736e7d44de395b867011ff9237dc5fdcfd28ee66.tar.gz |
Refs #29444 -- Fixed DateField constructor in db.backends.oracle.utils.InsertVar.
Diffstat (limited to 'django/db/backends/oracle/utils.py')
-rw-r--r-- | django/db/backends/oracle/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/oracle/utils.py b/django/db/backends/oracle/utils.py index ce2bf72d84..fdd6dee617 100644 --- a/django/db/backends/oracle/utils.py +++ b/django/db/backends/oracle/utils.py @@ -20,7 +20,7 @@ class InsertVar: 'PositiveIntegerField': int, 'FloatField': Database.NATIVE_FLOAT, 'DateTimeField': Database.TIMESTAMP, - 'DateField': Database.DATETIME, + 'DateField': Database.Date, 'DecimalField': Database.NUMBER, } |