summaryrefslogtreecommitdiff
path: root/tests/bulk_create/models.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-10-08 21:14:24 -0400
committerTim Graham <timograham@gmail.com>2015-10-09 14:16:06 -0400
commit7a5b7e35bf2e219225b9f26d3dd3e34f26e83e9c (patch)
tree94a091b4a67137d0161f819dd661835622d0b9af /tests/bulk_create/models.py
parent00db71d452d04e417bcc2a88757af1c9e22b8e74 (diff)
Fixed #22705 -- Fixed QuerySet.bulk_create() on models without any fields on Oracle.
Fixed on other backends by 134ca4d438bd7cbe8f0f287a00d545f96fa04a01. Thanks Mariusz Felisiak for the solution.
Diffstat (limited to 'tests/bulk_create/models.py')
-rw-r--r--tests/bulk_create/models.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/bulk_create/models.py b/tests/bulk_create/models.py
index 22d16e75e5..c302a70b1b 100644
--- a/tests/bulk_create/models.py
+++ b/tests/bulk_create/models.py
@@ -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