diff options
author | Stefano Chiodino <StefanoChiodino@users.noreply.github.com> | 2018-10-03 00:17:23 +0100 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2018-10-02 19:17:23 -0400 |
commit | 6de7f9ec60fbdc59797bc21803f16260bd203f04 (patch) | |
tree | af6012d5445e55b6b42e1dc3625e8c8e43c641b6 /django/contrib/postgres/apps.py | |
parent | bc7e288ca9554ac1a0a19941302dea19df1acd21 (diff) | |
download | django-6de7f9ec60fbdc59797bc21803f16260bd203f04.tar.gz |
Fixed #29598 -- Deprecated FloatRangeField in favor of DecimalRangeField.
Diffstat (limited to 'django/contrib/postgres/apps.py')
-rw-r--r-- | django/contrib/postgres/apps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/postgres/apps.py b/django/contrib/postgres/apps.py index 1ab5074f19..f1ec09806a 100644 --- a/django/contrib/postgres/apps.py +++ b/django/contrib/postgres/apps.py @@ -19,7 +19,7 @@ class PostgresConfig(AppConfig): conn.introspection.data_types_reverse.update({ 3802: 'django.contrib.postgres.fields.JSONField', 3904: 'django.contrib.postgres.fields.IntegerRangeField', - 3906: 'django.contrib.postgres.fields.FloatRangeField', + 3906: 'django.contrib.postgres.fields.DecimalRangeField', 3910: 'django.contrib.postgres.fields.DateTimeRangeField', 3912: 'django.contrib.postgres.fields.DateRangeField', 3926: 'django.contrib.postgres.fields.BigIntegerRangeField', |