Skip to content

Commit

Permalink
token len of 88 (#2358)
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos authored Sep 27, 2024
1 parent 8bbbf83 commit 8efc59a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.25 on 2024-09-27 16:02

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('common', '0054_delete_aimmo_models'),
]

operations = [
migrations.AlterField(
model_name='schoolteacherinvitation',
name='token',
field=models.CharField(max_length=88),
),
]
2 changes: 1 addition & 1 deletion cfl_common/common/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def get_queryset(self):


class SchoolTeacherInvitation(models.Model):
token = models.CharField(max_length=32)
token = models.CharField(max_length=88)
school = models.ForeignKey(
School,
related_name="teacher_invitations",
Expand Down

0 comments on commit 8efc59a

Please sign in to comment.