chenzhaoyang
2025-12-17 94061671a5689bce6d8570ed168af2e79d391773
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Generated by Django 5.1.8 on 2025-06-26 18:31
 
from django.db import migrations, models
 
 
class Migration(migrations.Migration):
 
    dependencies = [
        ("users", "0010_userproducttour"),
    ]
 
    operations = [
        migrations.AddField(
            model_name="user",
            name="custom_hotkeys",
            field=models.JSONField(
                blank=True,
                default=dict,
                help_text="Custom keyboard shortcuts configuration for the user interface",
                null=True,
                verbose_name="custom hotkeys",
            ),
        ),
    ]