Skip to content

Commit

Permalink
Increase token size to maybe fix windows hello problem (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bensge committed Jul 6, 2024
1 parent 0f91632 commit ae20fb5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions spybot/migrations/0022_alter_userpasskey_token.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.3 on 2024-07-06 16:10

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('spybot', '0021_userpasskey'),
]

operations = [
migrations.AlterField(
model_name='userpasskey',
name='token',
field=models.CharField(max_length=1024),
),
]

0 comments on commit ae20fb5

Please sign in to comment.