mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
From https://docs.djangoproject.com/en/3.2/releases/3.2/#customizing-type-of-auto-created-primary-keys:
When defining a model, if no field in a model is defined with primary_key=True an implicit primary key is added. The type of this implicit primary key can now be controlled via the DEFAULT_AUTO_FIELD setting and AppConfig.default_auto_field attribute. No more needing to override primary keys in all models. Maintaining the historical behavior, the default value for DEFAULT_AUTO_FIELD is AutoField.
This commit is contained in:
parent
e6e8ef0c85
commit
faebda7b34
2 changed files with 3 additions and 0 deletions
|
|
@ -3,5 +3,6 @@ from django.utils.translation import gettext_lazy as _
|
||||||
|
|
||||||
|
|
||||||
class MailBoxConfig(AppConfig):
|
class MailBoxConfig(AppConfig):
|
||||||
|
default_auto_field = 'django.db.models.AutoField'
|
||||||
name = 'django_mailbox'
|
name = 'django_mailbox'
|
||||||
verbose_name = _("Mail Box")
|
verbose_name = _("Mail Box")
|
||||||
|
|
|
||||||
2
tox.ini
2
tox.ini
|
|
@ -8,6 +8,7 @@ envlist=
|
||||||
py{35,36,37}-django22
|
py{35,36,37}-django22
|
||||||
py{36,37,38}-django30
|
py{36,37,38}-django30
|
||||||
py{36,37,38}-django31
|
py{36,37,38}-django31
|
||||||
|
py{36,37,38}-django32
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
passenv=EMAIL_IMAP_SERVER EMAIL_ACCOUNT EMAIL_PASSWORD EMAIL_SMTP_SERVER
|
passenv=EMAIL_IMAP_SERVER EMAIL_ACCOUNT EMAIL_PASSWORD EMAIL_SMTP_SERVER
|
||||||
|
|
@ -18,6 +19,7 @@ deps=
|
||||||
django22: django==2.0.*
|
django22: django==2.0.*
|
||||||
django30: django==3.0.*
|
django30: django==3.0.*
|
||||||
django31: django==3.1.*
|
django31: django==3.1.*
|
||||||
|
django32: django==3.2.*
|
||||||
-r{toxinidir}/test_requirements.txt
|
-r{toxinidir}/test_requirements.txt
|
||||||
sitepackages=False
|
sitepackages=False
|
||||||
commands=
|
commands=
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue