summaryrefslogtreecommitdiff
path: root/tests/schema/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/schema/models.py')
-rw-r--r--tests/schema/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/schema/models.py b/tests/schema/models.py
index 4512d8bc01..f6bdbd8815 100644
--- a/tests/schema/models.py
+++ b/tests/schema/models.py
@@ -12,6 +12,7 @@ class Author(models.Model):
name = models.CharField(max_length=255)
height = models.PositiveIntegerField(null=True, blank=True)
weight = models.IntegerField(null=True, blank=True)
+ uuid = models.UUIDField(null=True)
class Meta:
apps = new_apps