Fix JSONField default in models and migrations to avoid error when running from an installation via tarball.

This commit is contained in:
Chris Church
2013-05-19 23:56:37 -04:00
parent 32573ab013
commit 0bd576de62
15 changed files with 34 additions and 34 deletions

View File

@@ -886,7 +886,7 @@ class JobEvent(models.Model):
)
event_data = JSONField(
blank=True,
default='',
default={},
)
failed = models.BooleanField(
default=False,