New migration file

I don't know why it felt important to do this but it did. The migrations
are in one file now and don't need a merge migration.
This commit is contained in:
Mouse Reeve 2022-07-04 18:42:56 -07:00
parent a718a168a3
commit c7ecbb2fdf
2 changed files with 6 additions and 19 deletions

View file

@ -1,17 +0,0 @@
# Generated by Django 3.2.12 on 2022-04-08 22:20
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0148_alter_user_preferred_language"),
]
operations = [
migrations.RemoveField(
model_name="notification",
name="related_book",
),
]

View file

@ -1,4 +1,4 @@
# Generated by Django 3.2.12 on 2022-04-08 22:36
# Generated by Django 3.2.13 on 2022-07-05 00:49
from django.conf import settings
from django.db import migrations, models
@ -8,10 +8,14 @@ import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0149_remove_notification_related_book"),
('bookwyrm', '0150_readthrough_stopped_date'),
]
operations = [
migrations.RemoveField(
model_name='notification',
name='related_book',
),
migrations.AddField(
model_name="notification",
name="related_groups",