Coverage for rest_api/migrations/0010_alter_mutation_unique_together.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-09-19 09:56 

2 

3from django.db import migrations 

4 

5 

6class Migration(migrations.Migration): 

7 dependencies = [ 

8 ("rest_api", "0009_remove_mutation_aa_profile_and_more"), 

9 ] 

10 

11 operations = [ 

12 migrations.AlterUniqueTogether( 

13 name="mutation", 

14 unique_together={ 

15 ( 

16 "id", 

17 "element", 

18 "ref", 

19 "alt", 

20 "start", 

21 "end", 

22 "parent_id", 

23 "label", 

24 "frameshift", 

25 ) 

26 }, 

27 ), 

28 ]