You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
526 B

# Generated by Django 5.2.9 on 2025-12-09 15:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("account", "0009_user_client_ip"),
]
operations = [
migrations.AlterField(
model_name="user",
name="device_os",
field=models.CharField(
choices=[("android", "android"), ("apple", "apple"), ("web", "web")],
max_length=16,
null=True,
),
),
]