Skip to content

Commit

Permalink
🗃️(database) add missing migrations for user's language
Browse files Browse the repository at this point in the history
Addressed missing migrations for the user's language field,
ensuring recent updates are correctly applied.
  • Loading branch information
lebaudantoine committed Aug 7, 2024
1 parent c7ac114 commit 0c4d736
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/backend/core/migrations/0004_alter_user_language.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.0.7 on 2024-08-07 14:39

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('core', '0003_alter_room_configuration'),
]

operations = [
migrations.AlterField(
model_name='user',
name='language',
field=models.CharField(choices="(('en-us', 'English'), ('fr-fr', 'French'))", default='en-us', help_text='The language in which the user wants to see the interface.', max_length=10, verbose_name='language'),
),
]

0 comments on commit 0c4d736

Please sign in to comment.