summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/array_index_migrations/0001_initial.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2025-08-19 15:08:43 -0400
committerJacob Walls <jacobtylerwalls@gmail.com>2025-09-05 10:43:10 -0400
commit2a636118dacdcda074c99ebd50311d64a8cca367 (patch)
treef5b11c60f9fd598429d6ab60b35515a6c6d82256 /tests/postgres_tests/array_index_migrations/0001_initial.py
parent0ddbe12ea99a2dc1b757dc2015ba8bb6bfd9d653 (diff)
Fixed #36564 -- Changed DEFAULT_AUTO_FIELD from AutoField to BigAutoField.
Diffstat (limited to 'tests/postgres_tests/array_index_migrations/0001_initial.py')
-rw-r--r--tests/postgres_tests/array_index_migrations/0001_initial.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/postgres_tests/array_index_migrations/0001_initial.py b/tests/postgres_tests/array_index_migrations/0001_initial.py
index d08243b67e..b5fc4be725 100644
--- a/tests/postgres_tests/array_index_migrations/0001_initial.py
+++ b/tests/postgres_tests/array_index_migrations/0001_initial.py
@@ -11,7 +11,7 @@ class Migration(migrations.Migration):
fields=[
(
"id",
- models.AutoField(
+ models.BigAutoField(
verbose_name="ID",
serialize=False,
auto_created=True,