Skip to content

Commit 924a434

Browse files
committed
Updated migrations
1 parent 50504df commit 924a434

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

safe_transaction_service/tokens/migrations/0015_tokenlist_auth_key_tokenlist_auth_type_and_more.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Django 5.2.5 on 2025-12-18 12:13
1+
# Generated by Django 5.2.5 on 2025-12-18 15:25
22

33
from django.db import migrations, models
44

@@ -13,7 +13,7 @@ class Migration(migrations.Migration):
1313
migrations.AddField(
1414
model_name='tokenlist',
1515
name='auth_key',
16-
field=models.CharField(blank=True, help_text='Header name or query param name (e.g. api_key, token)', max_length=100),
16+
field=models.CharField(blank=True, help_text="Authentication key name. Usage depends on auth_type: For 'api_key': header name (e.g., 'x-api-key'). For 'bearer': header name (e.g., 'Authorization'). For 'query': query parameter name (e.g., 'api_key'). For 'basic': leave empty. For 'none': leave empty.", max_length=100),
1717
),
1818
migrations.AddField(
1919
model_name='tokenlist',
@@ -23,6 +23,6 @@ class Migration(migrations.Migration):
2323
migrations.AddField(
2424
model_name='tokenlist',
2525
name='auth_value',
26-
field=models.TextField(blank=True, help_text='Token / API key / credentials'),
26+
field=models.TextField(blank=True, help_text="Authentication credentials. Usage depends on auth_type: For 'api_key': the API key value. For 'bearer': the bearer token value (without 'Bearer ' prefix). For 'basic': the full 'Basic <base64>' value (e.g., 'Basic dXNlcjpwYXNz'). For 'query': the query parameter value. For 'none': leave empty."),
2727
),
2828
]

0 commit comments

Comments
 (0)