diff options
| author | Guilherme Martins Crocetti <gmcrocetti@gmail.com> | 2021-06-17 18:13:49 -0300 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-11-04 19:08:57 +0100 |
| commit | fc565cb539e4c1e5fba70d9ebb19bac0ca251d37 (patch) | |
| tree | 92bcd7957c5c5090748859253aa4eb7b9944cdf8 /tests/postgres_tests/migrations | |
| parent | 52f6927d7fb7a4dca40afce0391d018b4c34dd6d (diff) | |
Fixed #27147 -- Allowed specifying bounds of tuple inputs for non-discrete range fields.
Diffstat (limited to 'tests/postgres_tests/migrations')
| -rw-r--r-- | tests/postgres_tests/migrations/0002_create_test_models.py | 1 |
1 files changed, 1 insertions, 0 deletions
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)), ], |
