1
0
mirror of https://github.com/django/django.git synced 2025-04-12 11:32:20 +00:00

[3.2.x] Fixed #32570 -- Removed unnecessary default_auto_field in app config example.

Backport of d40402cfb023801f0d83f19747e30b13096e3636 from main
This commit is contained in:
kshitijraghav 2021-03-19 15:54:42 +05:30 committed by Mariusz Felisiak
parent 8298775dad
commit fb92a9e287

View File

@ -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"