mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-03 06:17:53 +10:00
fix: Make cmd_version nullable
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Generated by Django 3.1.3 on 2021-01-04 14:58
|
||||
# Generated by Django 3.1.3 on 2021-01-05 14:21
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
@@ -13,6 +13,6 @@ class Migration(migrations.Migration):
|
||||
migrations.AlterField(
|
||||
model_name='archiveresult',
|
||||
name='cmd_version',
|
||||
field=models.CharField(default='', max_length=32),
|
||||
field=models.CharField(blank=True, default=None, max_length=32, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user