apply forgotten migrations

This commit is contained in:
thomas girod 2024-06-26 13:38:33 +02:00
parent cd58d5a357
commit bf18284450
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 4.2 on 2024-06-26 09:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0037_auto_20211105_1708"),
]
operations = [
migrations.AlterField(
model_name="preferences",
name="receive_weekmail",
field=models.BooleanField(
default=False, verbose_name="receive the Weekmail"
),
),
]

View File

@ -0,0 +1,27 @@
# Generated by Django 4.2 on 2024-06-26 09:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("pedagogy", "0002_auto_20190827_2251"),
]
operations = [
migrations.AlterField(
model_name="uv",
name="language",
field=models.CharField(
choices=[
("FR", "French"),
("EN", "English"),
("DE", "German"),
("SP", "Spanish"),
],
default="FR",
max_length=10,
verbose_name="language",
),
),
]