mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Fixed #22705 -- Fixed QuerySet.bulk_create() on models without any fields on Oracle.
Fixed on other backends by 134ca4d438.
Thanks Mariusz Felisiak for the solution.
This commit is contained in:
parent
00db71d452
commit
7a5b7e35bf
3 changed files with 13 additions and 2 deletions
|
|
@ -47,3 +47,7 @@ class State(models.Model):
|
|||
class TwoFields(models.Model):
|
||||
f1 = models.IntegerField(unique=True)
|
||||
f2 = models.IntegerField(unique=True)
|
||||
|
||||
|
||||
class NoFields(models.Model):
|
||||
pass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue