mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-02 04:12:20 +00:00
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:
parent
a718a168a3
commit
c7ecbb2fdf
2 changed files with 6 additions and 19 deletions
|
@ -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",
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -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.conf import settings
|
||||||
from django.db import migrations, models
|
from django.db import migrations, models
|
||||||
|
@ -8,10 +8,14 @@ import django.db.models.deletion
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
("bookwyrm", "0149_remove_notification_related_book"),
|
('bookwyrm', '0150_readthrough_stopped_date'),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name='notification',
|
||||||
|
name='related_book',
|
||||||
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name="notification",
|
model_name="notification",
|
||||||
name="related_groups",
|
name="related_groups",
|
Loading…
Reference in a new issue