From d40402cfb023801f0d83f19747e30b13096e3636 Mon Sep 17 00:00:00 2001 From: kshitijraghav Date: Fri, 19 Mar 2021 15:54:42 +0530 Subject: [PATCH] Fixed #32570 -- Removed unnecessary default_auto_field in app config example. --- docs/ref/applications.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/ref/applications.txt b/docs/ref/applications.txt index 2cf175e9f0..5d4c0e9a85 100644 --- a/docs/ref/applications.txt +++ b/docs/ref/applications.txt @@ -90,7 +90,6 @@ would provide a proper name for the admin:: from django.apps import AppConfig class RockNRollConfig(AppConfig): - default_auto_field = 'django.db.models.BigAutoField' name = 'rock_n_roll' verbose_name = "Rock ā€™nā€™ roll"