mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #29496 -- Fixed crash on Oracle when converting a non-unique field to primary key.
Thanks Tim Graham for the review.
This commit is contained in:
parent
e95008f241
commit
6dd4edb1b4
4 changed files with 32 additions and 6 deletions
|
@ -12,6 +12,7 @@ class Author(models.Model):
|
|||
name = models.CharField(max_length=255)
|
||||
height = models.PositiveIntegerField(null=True, blank=True)
|
||||
weight = models.IntegerField(null=True, blank=True)
|
||||
uuid = models.UUIDField(null=True)
|
||||
|
||||
class Meta:
|
||||
apps = new_apps
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue