django_project_demo/app/apps.py
2024-08-24 03:25:23 +00:00

9 lines
199 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from django.apps import AppConfig
class AppConfig(AppConfig):
# 默认增加字段的数据类型一般是增加ID
default_auto_field = 'django.db.models.BigAutoField'
name = 'app'