Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Jan 12, 2022
1 parent 3d9310b commit 157654f
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 139 deletions.
22 changes: 0 additions & 22 deletions importer/migrations/0009_auto_20211008_1015.py

This file was deleted.

@@ -1,15 +1,20 @@
# Generated by Django 3.2.7 on 2021-10-08 11:50
# Generated by Django 3.2.7 on 2022-01-12 06:57

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("importer", "0009_auto_20211008_1015"),
("importer", "0009_alter_caseimportinfo_pedigree"),
]

operations = [
migrations.AddField(
model_name="caseimportinfo",
name="release",
field=models.CharField(default="GRCh37", max_length=32, null=True),
),
migrations.AlterField(
model_name="variantsetimportinfo",
name="genomebuild",
Expand Down
22 changes: 0 additions & 22 deletions regmaps/migrations/0002_auto_20211129_1443.py

This file was deleted.

93 changes: 0 additions & 93 deletions variants/migrations/0083_auto_20211008_1015.py

This file was deleted.

23 changes: 23 additions & 0 deletions variants/migrations/0084_auto_20220112_0657.py
@@ -0,0 +1,23 @@
# Generated by Django 3.2.7 on 2022-01-12 06:57

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("variants", "0083_auto_20211129_1443"),
]

operations = [
migrations.AddField(
model_name="case",
name="release",
field=models.CharField(default="GRCh37", max_length=32, null=True),
),
migrations.AddField(
model_name="smallvariantset",
name="release",
field=models.CharField(default="GRCh37", max_length=32, null=True),
),
]

0 comments on commit 157654f

Please sign in to comment.