Coverage for rest_api/migrations/0011_alter_mutation_unique_together.py: 100%
4 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-10 03:22 +0000
« 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:58
3from django.db import migrations
6class Migration(migrations.Migration):
7 dependencies = [
8 ("rest_api", "0010_alter_mutation_unique_together"),
9 ]
11 operations = [
12 migrations.AlterUniqueTogether(
13 name="mutation",
14 unique_together={
15 (
16 "element",
17 "ref",
18 "alt",
19 "start",
20 "end",
21 "parent_id",
22 "label",
23 "frameshift",
24 )
25 },
26 ),
27 ]