fix imports
[wolnelektury.git] / src / push / migrations / 0006_alter_devicetoken_options_alter_devicetoken_token.py
1 # Generated by Django 4.0.8 on 2025-09-03 12:56
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('push', '0005_devicetoken'),
10     ]
11
12     operations = [
13         migrations.AlterModelOptions(
14             name='devicetoken',
15             options={'ordering': ('-updated_at',)},
16         ),
17         migrations.AlterField(
18             model_name='devicetoken',
19             name='token',
20             field=models.CharField(max_length=1024, unique=True),
21         ),
22     ]