mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-04 16:09:54 +00:00
63 lines
1.8 KiB
Python
63 lines
1.8 KiB
Python
# Generated by Django 3.1.6 on 2021-04-07 00:45
|
|
|
|
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="bnf_id",
|
|
field=bookwyrm.models.fields.CharField(
|
|
blank=True, max_length=255, null=True
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="author",
|
|
name="gutenberg_id",
|
|
field=bookwyrm.models.fields.CharField(
|
|
blank=True, max_length=255, null=True
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="author",
|
|
name="inventaire_id",
|
|
field=bookwyrm.models.fields.CharField(
|
|
blank=True, max_length=255, null=True
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="author",
|
|
name="isni",
|
|
field=bookwyrm.models.fields.CharField(
|
|
blank=True, max_length=255, null=True
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="author",
|
|
name="viaf_id",
|
|
field=bookwyrm.models.fields.CharField(
|
|
blank=True, max_length=255, null=True
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="book",
|
|
name="bnf_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
|
|
),
|
|
),
|
|
]
|