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"
),
),
]