mirror of
https://github.com/django/django.git
synced 2025-07-28 23:54:02 +00:00
Fixed #31007 -- Allowed specifying type of auto-created primary keys.
This also changes the default type of auto-created primary keys for new apps and projects to BigAutoField.
This commit is contained in:
parent
b960e4ed72
commit
b5e12d490a
28 changed files with 415 additions and 11 deletions
10
tests/check_framework/apps.py
Normal file
10
tests/check_framework/apps.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class CheckDefaultPKConfig(AppConfig):
|
||||
name = 'check_framework'
|
||||
|
||||
|
||||
class CheckPKConfig(AppConfig):
|
||||
name = 'check_framework'
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
Loading…
Add table
Add a link
Reference in a new issue