diff options
| author | Tim Graham <timograham@gmail.com> | 2025-03-24 21:18:58 -0400 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-03-25 12:02:14 +0100 |
| commit | fecca298a2c6de22b054eaffeb4368b1167c7fd5 (patch) | |
| tree | bba2eda57f8735eec1bae3d1e65c47b44a5efdc3 /tests/postgres_tests/array_default_migrations/0001_initial.py | |
| parent | 7164f080474ef0213d1d6e625db647c45c36a5fb (diff) | |
Fixed #36276 -- Omitted size=None from ArrayField.deconstruct().
Diffstat (limited to 'tests/postgres_tests/array_default_migrations/0001_initial.py')
| -rw-r--r-- | tests/postgres_tests/array_default_migrations/0001_initial.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/postgres_tests/array_default_migrations/0001_initial.py b/tests/postgres_tests/array_default_migrations/0001_initial.py index 5c6fa7e189..7a8c993f65 100644 --- a/tests/postgres_tests/array_default_migrations/0001_initial.py +++ b/tests/postgres_tests/array_default_migrations/0001_initial.py @@ -20,9 +20,7 @@ class Migration(migrations.Migration): ), ( "field", - django.contrib.postgres.fields.ArrayField( - models.IntegerField(), size=None - ), + django.contrib.postgres.fields.ArrayField(models.IntegerField()), ), ], options={}, |
