edit original migration file, add blank string as acceptable to model

This commit is contained in:
Rebeccah
2021-02-16 17:41:44 -05:00
committed by Shane McDonald
parent 20ee73ce73
commit b1361c8fe2
5 changed files with 8 additions and 25 deletions
+3 -2
View File
@@ -42,9 +42,10 @@ class ExecutionEnvironment(CommonModel):
on_delete=models.SET_NULL,
)
pull = models.CharField(
max_length=1024,
max_length=16,
choices=PULL_CHOICES,
default=None,
blank=True,
default='',
help_text=_('Pull image before running?'),
)