Update models.py
add missing default of 0 being unlimited retention.
This commit is contained in:
parent
d0edbc3e68
commit
fc49994c6a
|
|
@ -21,7 +21,7 @@ class BackupJob(models.Model):
|
|||
websiteData = models.IntegerField()
|
||||
websiteDatabases = models.IntegerField()
|
||||
websiteDataEmails = models.IntegerField()
|
||||
retention = models.IntegerField()
|
||||
retention = models.IntegerField(default=0) # 0 being unlimited retention
|
||||
|
||||
|
||||
class JobSites(models.Model):
|
||||
|
|
|
|||
Loading…
Reference in New Issue