mirror of
https://github.com/django/django.git
synced 2025-10-09 18:12:39 +00:00
Fixed #17713 -- Renamed BaseDatabaseFeatures.allows_primary_key_0 to allows_auto_pk_0.
MySQL does allow primary key with value 0. It only forbids autoincrement primary key with value 0. Thanks Claude Paroz for the report.
This commit is contained in:
parent
b22d6c47a7
commit
d3cf6cfacf
7 changed files with 16 additions and 12 deletions
|
@ -162,7 +162,7 @@ class InlineFormsetFactoryTest(TestCase):
|
|||
Parent, Child, exclude=('school',), fk_name='mother'
|
||||
)
|
||||
|
||||
@skipUnlessDBFeature('allows_primary_key_0')
|
||||
@skipUnlessDBFeature('allows_auto_pk_0')
|
||||
def test_zero_primary_key(self):
|
||||
# Regression test for #21472
|
||||
poet = Poet.objects.create(id=0, name='test')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue