fix: project identifier migration (#1755)

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

View File

@ -67,5 +67,10 @@ class Migration(migrations.Migration):
'ordering': ('-created_at',),
'unique_together': {('comment', 'actor', 'reaction')},
},
),
migrations.AlterField(
model_name='project',
name='identifier',
field=models.CharField(max_length=12, verbose_name='Project Identifier'),
),
]