mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-27 13:14:24 -04:00
fix: Make cmd_version nullable
This commit is contained in:
parent
c21af37ed4
commit
14d1b3209e
2 changed files with 3 additions and 3 deletions
|
@ -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),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue