Fixes field causing form invalidation when editing books

This commit is contained in:
Mouse Reeve
2020-11-24 13:25:28 -08:00
parent 56638f79cf
commit 9bbedc5d9a
4 changed files with 31 additions and 2 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.0.7 on 2020-11-24 21:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('bookwyrm', '0011_auto_20201113_1727'),
]
operations = [
migrations.AlterField(
model_name='book',
name='origin_id',
field=models.CharField(blank=True, max_length=255, null=True),
),
]