summaryrefslogtreecommitdiff
path: root/tests/model_forms/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_forms/models.py')
-rw-r--r--tests/model_forms/models.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/model_forms/models.py b/tests/model_forms/models.py
index 103ed71b44..1a2102f898 100644
--- a/tests/model_forms/models.py
+++ b/tests/model_forms/models.py
@@ -472,3 +472,6 @@ class Award(models.Model):
class NullableUniqueCharFieldModel(models.Model):
codename = models.CharField(max_length=50, blank=True, null=True, unique=True)
+ email = models.EmailField(blank=True, null=True)
+ slug = models.SlugField(blank=True, null=True)
+ url = models.URLField(blank=True, null=True)