Coverage for rest_api/migrations/0023_mutation_mutation_gene_id_2f1f1c_idx_and_more.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.15.4, created at 2026-08-10 03:22 +0000

1# Generated by Django 4.2.4 on 2023-10-16 08:54 

2 

3from django.db import migrations, models 

4 

5 

6class Migration(migrations.Migration): 

7 dependencies = [ 

8 ("rest_api", "0022_mutation_type"), 

9 ] 

10 

11 operations = [ 

12 migrations.AddIndex( 

13 model_name="mutation", 

14 index=models.Index(fields=["gene"], name="mutation_gene_id_2f1f1c_idx"), 

15 ), 

16 migrations.AddIndex( 

17 model_name="mutation", 

18 index=models.Index(fields=["start"], name="mutation_start_d58834_idx"), 

19 ), 

20 migrations.AddIndex( 

21 model_name="mutation", 

22 index=models.Index(fields=["end"], name="mutation_end_c996da_idx"), 

23 ), 

24 migrations.AddIndex( 

25 model_name="mutation", 

26 index=models.Index(fields=["ref"], name="mutation_ref_460df8_idx"), 

27 ), 

28 migrations.AddIndex( 

29 model_name="mutation", 

30 index=models.Index(fields=["alt"], name="mutation_alt_c8d6b3_idx"), 

31 ), 

32 ]