1
0
mirror of https://github.com/django/django.git synced 2025-03-03 05:24:24 +00:00

Fixed #32570 -- Removed unnecessary default_auto_field in app config example.

This commit is contained in:
kshitijraghav 2021-03-19 15:54:42 +05:30 committed by Mariusz Felisiak
parent e49fdfa405
commit d40402cfb0

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"