mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-09 15:53:22 +00:00
apply forgotten migrations
This commit is contained in:
parent
cd58d5a357
commit
bf18284450
19
core/migrations/0038_alter_preferences_receive_weekmail.py
Normal file
19
core/migrations/0038_alter_preferences_receive_weekmail.py
Normal 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"
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
27
pedagogy/migrations/0003_alter_uv_language.py
Normal file
27
pedagogy/migrations/0003_alter_uv_language.py
Normal 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",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user