1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-21 01:58:23 +02:00

Use Django 4.1 (soon 4.2) to use the new async framework

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello
2023-03-22 12:14:24 +01:00
parent f3d611913e
commit 19f41152ee
5 changed files with 31 additions and 7 deletions

View File

@ -0,0 +1,25 @@
# Generated by Django 4.1.7 on 2023-03-22 11:22
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
("contenttypes", "0002_remove_content_type_name"),
("registration", "0005_studentregistration_vaccine_sheet"),
]
operations = [
migrations.AlterField(
model_name="registration",
name="polymorphic_ctype",
field=models.ForeignKey(
editable=False,
null=True,
on_delete=django.db.models.deletion.CASCADE,
related_name="polymorphic_%(app_label)s.%(class)s_set+",
to="contenttypes.contenttype",
),
),
]