mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
[1.9.x] Fixed #22705 -- Fixed QuerySet.bulk_create() on models without any fields on Oracle.
Fixed on other backends by134ca4d438. Thanks Mariusz Felisiak for the solution. Backport of7a5b7e35bffrom master
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user