mirror of
https://github.com/django/django.git
synced 2025-11-02 04:48:33 +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
|
|
@ -3,7 +3,7 @@ from django.db import migrations, models
|
|||
|
||||
from ..fields import (
|
||||
ArrayField, BigIntegerRangeField, CICharField, CIEmailField, CITextField,
|
||||
DateRangeField, DateTimeRangeField, FloatRangeField, HStoreField,
|
||||
DateRangeField, DateTimeRangeField, DecimalRangeField, HStoreField,
|
||||
IntegerRangeField, JSONField, SearchVectorField,
|
||||
)
|
||||
from ..models import TagField
|
||||
|
|
@ -209,7 +209,7 @@ class Migration(migrations.Migration):
|
|||
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
||||
('ints', IntegerRangeField(null=True, blank=True)),
|
||||
('bigints', BigIntegerRangeField(null=True, blank=True)),
|
||||
('floats', FloatRangeField(null=True, blank=True)),
|
||||
('decimals', DecimalRangeField(null=True, blank=True)),
|
||||
('timestamps', DateTimeRangeField(null=True, blank=True)),
|
||||
('dates', DateRangeField(null=True, blank=True)),
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue