1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| # Generated by Django 5.1.13 on 2025-10-02 22:37
|
| from django.db import migrations, models
|
|
| class Migration(migrations.Migration):
|
| dependencies = [
| ("jwt_auth", "0001_initial"),
| ]
|
| operations = [
| migrations.AlterField(
| model_name="jwtsettings",
| name="api_tokens_enabled",
| field=models.BooleanField(
| default=True,
| help_text="Enable JWT API token authentication for this organization",
| verbose_name="JWT API tokens enabled",
| ),
| ),
| migrations.AlterField(
| model_name="jwtsettings",
| name="legacy_api_tokens_enabled",
| field=models.BooleanField(
| default=False,
| help_text="Enable legacy API token authentication for this organization",
| verbose_name="legacy API tokens enabled",
| ),
| ),
| ]
|
|