Skip to content

Commit

Permalink
example of broken UUID fields
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobb committed Mar 21, 2017
1 parent 13dea13 commit 55a8ce7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions django_fakery/tests/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class Migration(migrations.Migration):
('slug', AutoSlugField()),
('first_name', models.CharField(max_length=60)),
('last_name', models.CharField(max_length=60)),
('uuid_id', models.UUIDField()),
('email_address', models.EmailField(max_length=60)),
('twitter_profile', models.URLField(max_length=60)),
],
Expand Down
1 change: 1 addition & 0 deletions django_fakery/tests/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class Chef(models.Model):
slug = AutoSlugField()
first_name = models.CharField(max_length=60)
last_name = models.CharField(max_length=60)
uuid_id = models.UUIDField()
email_address = models.EmailField()
twitter_profile = models.URLField()

Expand Down

0 comments on commit 55a8ce7

Please sign in to comment.