mirror of
https://github.com/django/django.git
synced 2025-08-01 01:22:36 +00:00
Fixed #27147 -- Allowed specifying bounds of tuple inputs for non-discrete range fields.
This commit is contained in:
parent
52f6927d7f
commit
fc565cb539
8 changed files with 181 additions and 13 deletions
|
@ -249,6 +249,7 @@ class Migration(migrations.Migration):
|
|||
('decimals', DecimalRangeField(null=True, blank=True)),
|
||||
('timestamps', DateTimeRangeField(null=True, blank=True)),
|
||||
('timestamps_inner', DateTimeRangeField(null=True, blank=True)),
|
||||
('timestamps_closed_bounds', DateTimeRangeField(null=True, blank=True, default_bounds='[]')),
|
||||
('dates', DateRangeField(null=True, blank=True)),
|
||||
('dates_inner', DateRangeField(null=True, blank=True)),
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue