Coverage for rest_api/migrations/0072_remove_aminoacidmutation_is_frameshift_and_more.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 5.1.7 on 2025-06-13 00:56
3from django.db import migrations, models
6class Migration(migrations.Migration):
8 dependencies = [
9 ("rest_api", "0071_alter_reference_name"),
10 ]
12 operations = [
13 migrations.RemoveField(
14 model_name="aminoacidmutation",
15 name="is_frameshift",
16 ),
17 migrations.AddField(
18 model_name="nucleotidemutation",
19 name="is_frameshift",
20 field=models.BooleanField(default=False),
21 ),
22 ]