summaryrefslogtreecommitdiff
path: root/tests/bulk_create/models.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2017-02-24 16:54:10 +0100
committerTim Graham <timograham@gmail.com>2017-02-24 10:54:10 -0500
commitdc811cf50306972f838af8a975848ec26548bbf8 (patch)
treea4e8c88566eb5da34fdf1abb47e5a5f6ef6fcb30 /tests/bulk_create/models.py
parentc31e7ab5a4b062225bc4f6b5cae065325dd30f1f (diff)
Refs #22144 -- Added test for QuerySet.bulk_create() with long non-ASCII text.
Diffstat (limited to 'tests/bulk_create/models.py')
-rw-r--r--tests/bulk_create/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/bulk_create/models.py b/tests/bulk_create/models.py
index b98ce4a152..c0ea527a62 100644
--- a/tests/bulk_create/models.py
+++ b/tests/bulk_create/models.py
@@ -14,6 +14,7 @@ except ImportError:
class Country(models.Model):
name = models.CharField(max_length=255)
iso_two_letter = models.CharField(max_length=2)
+ description = models.TextField()
class ProxyCountry(Country):