fix: project identifier length (#1757)

This commit is contained in:
Nikhil 2023-08-01 19:25:04 +05:30 committed by GitHub
parent 11525f26d0
commit 6ea15ced02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,4 +73,9 @@ class Migration(migrations.Migration):
name='identifier',
field=models.CharField(max_length=12, verbose_name='Project Identifier'),
),
migrations.AlterField(
model_name='projectidentifier',
name='name',
field=models.CharField(max_length=12),
),
]