forked from mirrors/bookwyrm
Updates migrations
This commit is contained in:
parent
2f93e6d723
commit
54a8815f49
4 changed files with 4 additions and 60 deletions
|
@ -1,13 +0,0 @@
|
||||||
# Generated by Django 3.2.4 on 2021-08-04 21:14
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("bookwyrm", "0077_rename_physical_format_edition_physical_format_detail"),
|
|
||||||
("bookwyrm", "0079_merge_20210804_1746"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = []
|
|
|
@ -1,13 +0,0 @@
|
||||||
# Generated by Django 3.2.4 on 2021-09-07 05:14
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("bookwyrm", "0080_merge_20210804_2114"),
|
|
||||||
("bookwyrm", "0088_auto_20210905_2233"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = []
|
|
|
@ -1,30 +0,0 @@
|
||||||
# Generated by Django 3.2.4 on 2021-09-07 19:46
|
|
||||||
|
|
||||||
import bookwyrm.models.fields
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
("bookwyrm", "0089_merge_20210907_0514"),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name="edition",
|
|
||||||
name="physical_format",
|
|
||||||
field=bookwyrm.models.fields.CharField(
|
|
||||||
blank=True,
|
|
||||||
choices=[
|
|
||||||
("AudiobookFormat", "Audiobook"),
|
|
||||||
("EBook", "eBook"),
|
|
||||||
("GraphicNovel", "Graphic novel"),
|
|
||||||
("Hardcover", "Hardcover"),
|
|
||||||
("Paperback", "Paperback"),
|
|
||||||
],
|
|
||||||
max_length=255,
|
|
||||||
null=True,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -75,7 +75,7 @@ def reverse(app_registry, schema_editor):
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
("bookwyrm", "0076_preview_images"),
|
('bookwyrm', '0100_shelf_description'),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
@ -90,9 +90,9 @@ class Migration(migrations.Migration):
|
||||||
field=bookwyrm.models.fields.CharField(
|
field=bookwyrm.models.fields.CharField(
|
||||||
blank=True,
|
blank=True,
|
||||||
choices=[
|
choices=[
|
||||||
("AudiobookFormat", "Audiobookformat"),
|
("AudiobookFormat", "Audiobook"),
|
||||||
("EBook", "Ebook"),
|
("EBook", "eBook"),
|
||||||
("GraphicNovel", "Graphicnovel"),
|
("GraphicNovel", "Graphic novel"),
|
||||||
("Hardcover", "Hardcover"),
|
("Hardcover", "Hardcover"),
|
||||||
("Paperback", "Paperback"),
|
("Paperback", "Paperback"),
|
||||||
],
|
],
|
Loading…
Reference in a new issue