浏览代码

Migrations for previous change

master
Dirk Alders 1 个月前
父节点
当前提交
3a24ee2459
共有 1 个文件被更改,包括 18 次插入0 次删除
  1. 18
    0
      migrations/0005_alter_userprofile_language_code.py

+ 18
- 0
migrations/0005_alter_userprofile_language_code.py 查看文件

@@ -0,0 +1,18 @@
1
+# Generated by Django 5.1.2 on 2024-11-01 19:29
2
+
3
+from django.db import migrations, models
4
+
5
+
6
+class Migration(migrations.Migration):
7
+
8
+    dependencies = [
9
+        ('users', '0004_userprofile_mail_pending'),
10
+    ]
11
+
12
+    operations = [
13
+        migrations.AlterField(
14
+            model_name='userprofile',
15
+            name='language_code',
16
+            field=models.CharField(choices=[('en', 'English'), ('de', 'Deutsch')], default='en', max_length=150),
17
+        ),
18
+    ]

正在加载...
取消
保存