mirror of
https://github.com/django/django.git
synced 2025-08-01 17:42:56 +00:00
Fixed #29598 -- Deprecated FloatRangeField in favor of DecimalRangeField.
This commit is contained in:
parent
bc7e288ca9
commit
6de7f9ec60
13 changed files with 126 additions and 42 deletions
|
@ -31,7 +31,7 @@ class InspectDBTests(PostgreSQLTestCase):
|
|||
[
|
||||
'ints = django.contrib.postgres.fields.IntegerRangeField(blank=True, null=True)',
|
||||
'bigints = django.contrib.postgres.fields.BigIntegerRangeField(blank=True, null=True)',
|
||||
'floats = django.contrib.postgres.fields.FloatRangeField(blank=True, null=True)',
|
||||
'decimals = django.contrib.postgres.fields.DecimalRangeField(blank=True, null=True)',
|
||||
'timestamps = django.contrib.postgres.fields.DateTimeRangeField(blank=True, null=True)',
|
||||
'dates = django.contrib.postgres.fields.DateRangeField(blank=True, null=True)',
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue