WMDE
/
eva
forked from tohe/eva
7
1
Fork 0
eva/home/apps.py

10 lines
334 B
Python
Raw Normal View History

2025-04-14 08:34:30 +00:00
# import django´s base Appconfig class
from django.apps import AppConfig
# configuration class for the 'home' application
class HomeConfig(AppConfig):
# set the default type of primary key field for models in this app
default_auto_field = 'django.db.models.BigAutoField'
# give the application a name
name = 'home'