lib.itmens/journal/migrations/0009_comment_focus_item.py

25 lines
647 B
Python
Raw Permalink Normal View History

2023-02-01 22:50:50 -05:00
# Generated by Django 3.2.16 on 2023-01-31 20:14
import django.db.models.deletion
from django.db import migrations, models
2023-02-01 22:50:50 -05:00
class Migration(migrations.Migration):
dependencies = [
("catalog", "0002_initial"),
("journal", "0008_alter_shelfmember_unique_together"),
]
operations = [
migrations.AddField(
model_name="comment",
name="focus_item",
field=models.ForeignKey(
null=True,
on_delete=django.db.models.deletion.PROTECT,
related_name="focused_comments",
to="catalog.item",
),
),
]