23 lines
590 B
Python
23 lines
590 B
Python
# Generated by Django 4.2.8 on 2023-12-13 14:27
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("objectives", "0015_auto_20210511_2150"),
|
|
("books", "0044_auto_20230831_0845"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="snapshot",
|
|
name="objective_groups",
|
|
field=models.ManyToManyField(
|
|
related_name="+",
|
|
through="books.ObjectiveGroupSnapshot",
|
|
to="objectives.objectivegroup",
|
|
),
|
|
),
|
|
]
|