* New ID: Audible ASIN Audible belongs to Amazon BUT they do not share the same IDs. The Audible ASIN of an audiobook is never the same as the Amazon ASIN. Yeah, I know, Amazon is great. The fact that the ASIN is a good distinction for different works and editions bothers me more than I will ever be willing to admint. * New ID "ISFDB" Internet Speculative Ficiton Database ID for books and authors. Links to the entry if set. * Added aasin to test Added aasin to test * the answer expects more emptxy fields...
28 lines
695 B
Python
28 lines
695 B
Python
# Generated by Django 3.2.16 on 2022-12-05 17:01
|
|
|
|
import bookwyrm.models.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bookwyrm", "0167_auto_20221125_1900"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="author",
|
|
name="aasin",
|
|
field=bookwyrm.models.fields.CharField(
|
|
blank=True, max_length=255, null=True
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="book",
|
|
name="aasin",
|
|
field=bookwyrm.models.fields.CharField(
|
|
blank=True, max_length=255, null=True
|
|
),
|
|
),
|
|
]
|