Fixes field causing form invalidation when editing books
This commit is contained in:
parent
56638f79cf
commit
9bbedc5d9a
4 changed files with 31 additions and 2 deletions
18
bookwyrm/migrations/0012_auto_20201124_2125.py
Normal file
18
bookwyrm/migrations/0012_auto_20201124_2125.py
Normal 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),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue