From fc565cb539e4c1e5fba70d9ebb19bac0ca251d37 Mon Sep 17 00:00:00 2001 From: Guilherme Martins Crocetti Date: Thu, 17 Jun 2021 18:13:49 -0300 Subject: Fixed #27147 -- Allowed specifying bounds of tuple inputs for non-discrete range fields. --- tests/postgres_tests/migrations/0002_create_test_models.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/postgres_tests/migrations') diff --git a/tests/postgres_tests/migrations/0002_create_test_models.py b/tests/postgres_tests/migrations/0002_create_test_models.py index 377e220db1..7ede593dae 100644 --- a/tests/postgres_tests/migrations/0002_create_test_models.py +++ b/tests/postgres_tests/migrations/0002_create_test_models.py @@ -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)), ], -- cgit v1.3