Adds inventaire identifier to book data fields

This commit is contained in:
Mouse Reeve
2021-04-06 13:54:20 -07:00
parent e594cd0a36
commit bfdcf611e7
2 changed files with 42 additions and 6 deletions

View File

@@ -0,0 +1,28 @@
# Generated by Django 3.1.6 on 2021-04-06 17:38
import bookwyrm.models.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0062_auto_20210406_1731"),
]
operations = [
migrations.AddField(
model_name="author",
name="inventaire_id",
field=bookwyrm.models.fields.CharField(
blank=True, max_length=255, null=True
),
),
migrations.AddField(
model_name="book",
name="inventaire_id",
field=bookwyrm.models.fields.CharField(
blank=True, max_length=255, null=True
),
),
]