feat: added appointment of reviewer to a submission

This commit is contained in:
Андрей Сумин
2025-03-02 12:08:33 +03:00
parent 511e98339a
commit 1504cf1cf5
6 changed files with 65 additions and 5 deletions
@@ -0,0 +1,19 @@
# Generated by Django 5.1.6 on 2025-03-02 08:30
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('review', '0001_initial'),
('task', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='competitiontask',
name='reviewers',
field=models.ManyToManyField(blank=True, to='review.reviewer'),
),
]