Skip to content

Commit

Permalink
apply forgotten migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
imperosol committed Jul 3, 2024
1 parent 68385cb commit 9f393b2
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
19 changes: 19 additions & 0 deletions core/migrations/0038_alter_preferences_receive_weekmail.py
Original file line number Diff line number Diff line change
@@ -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 changes: 27 additions & 0 deletions pedagogy/migrations/0003_alter_uv_language.py
Original file line number Diff line number Diff line change
@@ -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",
),
),
]

0 comments on commit 9f393b2

Please sign in to comment.