diff options
Diffstat (limited to 'django/db/backends/postgresql/operations.py')
-rw-r--r-- | django/db/backends/postgresql/operations.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/django/db/backends/postgresql/operations.py b/django/db/backends/postgresql/operations.py index c67062a4a7..51374cb3bb 100644 --- a/django/db/backends/postgresql/operations.py +++ b/django/db/backends/postgresql/operations.py @@ -257,6 +257,9 @@ class DatabaseOperations(BaseDatabaseOperations): def adapt_timefield_value(self, value): return value + def adapt_decimalfield_value(self, value, max_digits=None, decimal_places=None): + return value + def adapt_ipaddressfield_value(self, value): if value: return Inet(value) |