mirror of
https://github.com/ansible/awx.git
synced 2026-02-21 21:20:08 -03:30
Fix JSONField default in models and migrations to avoid error when running from an installation via tarball.
This commit is contained in:
@@ -886,7 +886,7 @@ class JobEvent(models.Model):
|
||||
)
|
||||
event_data = JSONField(
|
||||
blank=True,
|
||||
default='',
|
||||
default={},
|
||||
)
|
||||
failed = models.BooleanField(
|
||||
default=False,
|
||||
|
||||
Reference in New Issue
Block a user