Fixed #36276 -- Omitted size=None from ArrayField.deconstruct().

This commit is contained in:
Tim Graham 2025-03-24 21:18:58 -04:00 committed by Sarah Boyce
parent 7164f08047
commit fecca298a2
5 changed files with 19 additions and 30 deletions

View file

@ -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={},