Merged in feature/Add-missing-migrations (pull request #140)
Add migrations to develop Approved-by: Ramon Wenger
This commit is contained in:
commit
fdbdcb366e
|
|
@ -0,0 +1,20 @@
|
||||||
|
# Generated by Django 4.2.8 on 2023-12-13 14:27
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("assignments", "0018_alter_assignment_module"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name="studentsubmission",
|
||||||
|
options={"get_latest_by": "modified"},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name="submissionfeedback",
|
||||||
|
options={"get_latest_by": "modified"},
|
||||||
|
),
|
||||||
|
]
|
||||||
|
|
@ -0,0 +1,22 @@
|
||||||
|
# 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",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
||||||
|
|
@ -0,0 +1,28 @@
|
||||||
|
# Generated by Django 4.2.8 on 2023-12-13 15:07
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("books", "0045_alter_snapshot_objective_groups"),
|
||||||
|
("users", "0034_user_last_module_level"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name="schoolclassmember",
|
||||||
|
options={"ordering": ["user__username"]},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name="user",
|
||||||
|
options={"ordering": ["username"]},
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="user",
|
||||||
|
name="recent_modules",
|
||||||
|
field=models.ManyToManyField(
|
||||||
|
related_name="+", through="books.RecentModule", to="books.module"
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
||||||
Loading…
Reference in New Issue