mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
20 lines
435 B
Python
20 lines
435 B
Python
import users.models
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("users", "0003_user_language"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="user",
|
|
name="language",
|
|
field=models.CharField(
|
|
choices=users.models.language_choices, default="auto", max_length=10
|
|
),
|
|
),
|
|
]
|