fix: Give cmd_version a default value in case it is not present

This commit is contained in:
Cristian
2021-01-04 10:00:53 -05:00
committed by Nick Sweeting
parent ad7849d319
commit c21af37ed4
2 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.1.3 on 2021-01-04 14:58
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0007_archiveresult'),
]
operations = [
migrations.AlterField(
model_name='archiveresult',
name='cmd_version',
field=models.CharField(default='', max_length=32),
),
]