1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| # Generated by Django 3.1.14 on 2022-04-14 14:08
|
| from django.db import migrations, models
|
|
| class Migration(migrations.Migration):
|
| dependencies = [
| ('tasks', '0015_task_fill_inner_id'),
| ]
|
| operations = [
| migrations.AddIndex(
| model_name='annotation',
| index=models.Index(fields=['task', 'completed_by'], name='task_comple_task_id_d49cd7_idx'),
| ),
| migrations.AddIndex(
| model_name='task',
| index=models.Index(fields=['id', 'project'], name='task_id_aef988_idx'),
| ),
| ]
|
|