perf: Passkey Model field token max_length 1024

This commit is contained in:
Bai
2024-12-12 14:26:30 +08:00
committed by feng626
parent 7fd88b95f9
commit 54726f0a2d
2 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.1.13 on 2024-12-12 06:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('authentication', '0003_sshkey'),
]
operations = [
migrations.AlterField(
model_name='passkey',
name='token',
field=models.CharField(max_length=1024, verbose_name='Token'),
),
]